aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-10-18 21:55:21 +0000
committerChristian Grothoff <christian@grothoff.org>2015-10-18 21:55:21 +0000
commit65e4a9a5d2678e96505be1c7ca490e265709a7ff (patch)
tree24852fcd118aae53976b0d8356865c33ccd14d7b
parent770959a6e7ed92e09d61553e170e3dc6053f0355 (diff)
downloadgnunet-65e4a9a5d2678e96505be1c7ca490e265709a7ff.tar.gz
gnunet-65e4a9a5d2678e96505be1c7ca490e265709a7ff.zip
-indent
-rw-r--r--src/util/os_priority.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index e0516b2bd..734b6f85a 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -1541,7 +1541,8 @@ GNUNET_OS_process_status (struct GNUNET_OS_Process *proc,
1541 ret = waitpid (proc->pid, &status, WNOHANG); 1541 ret = waitpid (proc->pid, &status, WNOHANG);
1542 if (ret < 0) 1542 if (ret < 0)
1543 { 1543 {
1544 LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "waitpid"); 1544 LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING,
1545 "waitpid");
1545 return GNUNET_SYSERR; 1546 return GNUNET_SYSERR;
1546 } 1547 }
1547 if (0 == ret) 1548 if (0 == ret)
@@ -1590,7 +1591,8 @@ GNUNET_OS_process_status (struct GNUNET_OS_Process *proc,
1590 ret = proc->pid; 1591 ret = proc->pid;
1591 if (h == NULL || ret == 0) 1592 if (h == NULL || ret == 0)
1592 { 1593 {
1593 LOG (GNUNET_ERROR_TYPE_WARNING, "Invalid process information {%d, %08X}\n", 1594 LOG (GNUNET_ERROR_TYPE_WARNING,
1595 "Invalid process information {%d, %08X}\n",
1594 ret, h); 1596 ret, h);
1595 return GNUNET_SYSERR; 1597 return GNUNET_SYSERR;
1596 } 1598 }