aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-03-11 08:47:18 +0000
committerChristian Grothoff <christian@grothoff.org>2012-03-11 08:47:18 +0000
commit457cbc08b5d816990b5dc1ee8c988eb4dc6f528a (patch)
treee0f460f9c3598a34a01a9e7b3f81f3fb532cd9ae /src
parent1ebddbe094a78be0a944830f97a771c87bd09d82 (diff)
downloadgnunet-457cbc08b5d816990b5dc1ee8c988eb4dc6f528a.tar.gz
gnunet-457cbc08b5d816990b5dc1ee8c988eb4dc6f528a.zip
-fix
Diffstat (limited to 'src')
-rw-r--r--src/util/os_priority.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/os_priority.c b/src/util/os_priority.c
index 434fd979f..0b56ce5c5 100644
--- a/src/util/os_priority.c
+++ b/src/util/os_priority.c
@@ -466,7 +466,7 @@ GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig)
466 errno = EINVAL; 466 errno = EINVAL;
467 return -1; 467 return -1;
468#else 468#else
469 return PLIBC_kill (proc->pid, sig); 469 return PLIBC_KILL (proc->pid, sig);
470#endif 470#endif
471 } 471 }
472} 472}