]> andersk Git - moira.git/commitdiff
NULL != ""
authordanw <danw>
Mon, 5 Jan 1998 14:53:00 +0000 (14:53 +0000)
committerdanw <danw>
Mon, 5 Jan 1998 14:53:00 +0000 (14:53 +0000)
dcm/startdcm.c
reg_svr/startreg.c
server/startmoira.c

index be1ac35d97180c14007a6aaf84c880d93cebc3dd..6f49c4c66d404afae441a757d0f79fe1bec829aa 100644 (file)
@@ -51,7 +51,7 @@ void cleanup()
                if (WIFSIGNALED(stat)) {
                        sprintf(buf, "exited on signal %d%s\n",
                                WTERMSIG(stat),
-                               (WCOREDUMP(stat)?"; Core dumped":0));
+                               (WCOREDUMP(stat)?"; Core dumped":""));
                }
                write(rdpipe[1], buf, strlen(buf));
                close(rdpipe[1]);
index 5a9dfe89028ae5b75a837d9bb1647891dfec7d8f..f2eb88c89be900f91cec700920a75edf57348cf5 100644 (file)
@@ -51,7 +51,7 @@ void cleanup()
                if (WIFSIGNALED(stat)) {
                        sprintf(buf, "exited on signal %d%s\n",
                                WTERMSIG(stat),
-                               (WCOREDUMP(stat)?"; Core dumped":0));
+                               (WCOREDUMP(stat)?"; Core dumped":""));
                }
                write(rdpipe[1], buf, strlen(buf));
                close(rdpipe[1]);
index 25946ad67ce126dcf70b27b096c669e03c3b7d9a..760f9cb9711d33b8b49535daf158c4733fcceb71 100644 (file)
@@ -56,7 +56,7 @@ void cleanup()
                if (WIFSIGNALED(stat)) {
                        sprintf(buf, "exited on signal %d%s\n",
                                WTERMSIG(stat),
-                               (WCOREDUMP(stat)?"; Core dumped":0));
+                               (WCOREDUMP(stat)?"; Core dumped":""));
                        if(WCOREDUMP(stat))
                          critical_alert("startmoira", "%s", buf);
                }
This page took 0.039287 seconds and 5 git commands to generate.