diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-30 20:14:35 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-30 20:14:35 +0000 |
commit | d8f027c07078abaf8af187011cb1cdcc54986032 (patch) | |
tree | 9b40aad2e3176ac560add9cf29de87f94c517073 /osdep-darwin.c | |
parent | e16ed21e5d53a5e5fbc7b5ec76a30399704c2cc9 (diff) | |
download | rtmux-d8f027c07078abaf8af187011cb1cdcc54986032.tar.gz rtmux-d8f027c07078abaf8af187011cb1cdcc54986032.tar.bz2 rtmux-d8f027c07078abaf8af187011cb1cdcc54986032.zip |
Missing ;.
Diffstat (limited to 'osdep-darwin.c')
-rw-r--r-- | osdep-darwin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep-darwin.c b/osdep-darwin.c index 5f768cbb..e8b184f8 100644 --- a/osdep-darwin.c +++ b/osdep-darwin.c @@ -1,4 +1,4 @@ -/* $Id: osdep-darwin.c,v 1.2 2009-01-26 22:57:19 nicm Exp $ */ +/* $Id: osdep-darwin.c,v 1.3 2009-01-30 20:14:35 nicm Exp $ */ /* * Copyright (c) 2009 Joshua Elsasser <josh@elsasser.org> @@ -39,7 +39,7 @@ get_argv0(int fd, __attribute__ ((unused)) char *tty) struct kinfo_proc kp; if ((mib[3] = tcgetpgrp(fd)) == -1) - return (NULL) + return (NULL); size = sizeof kp; if (sysctl(mib, 4, &kp, &size, NULL, 0) == -1 || |