Skip to content

Commit 673fa9c

Browse files
committed
Bug#34552655 PROCESSINFO_REP signal printer missing newline
Add missing newlines. Approved by : Maitrayi Sabaratnam <maitrayi.sabaratnam@oracle.com> Change-Id: I3faeebeb683f4930f3e8833ed37cba32fa941384
1 parent ef184b0 commit 673fa9c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

storage/ndb/src/common/debugger/signaldata/ProcessInfoRep.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
2-
Copyright (C) 2016, 2017 Oracle and/or its affiliates. All rights reserved.
3-
All rights reserved. Use is subject to license terms.
2+
Copyright (C) 2016, 2023 Oracle and/or its affiliates.
43
54
This program is free software; you can redistribute it and/or modify
65
it under the terms of the GNU General Public License, version 2.0,
@@ -29,8 +28,8 @@ bool
2928
printPROCESSINFO_REP(FILE * out, const Uint32 * data, Uint32 len, Uint16 bno) {
3029
ProcessInfoRep * sig = (ProcessInfoRep *) data;
3130

32-
fprintf(out, " process_name: %s", (char *) sig->process_name);
33-
fprintf(out, " process_id: %d angel_process_id: %d application_port: %d",
31+
fprintf(out, " process_name: %s\n", (char *) sig->process_name);
32+
fprintf(out, " process_id: %d angel_process_id: %d application_port: %d\n",
3433
sig->process_id, sig->angel_process_id, sig->application_port);
3534

3635
return true;

0 commit comments

Comments
 (0)