summaryrefslogtreecommitdiff
path: root/source/smbwrapper
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-07 10:41:38 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-07 10:41:38 +0000
commitc506ffa527428897689dfd9ff48719208c47669d (patch)
tree20e06bfd0f7c060d7e6da201d9e3ee2187ab945d /source/smbwrapper
parent1ad5bc381ab00f0699f025cb64db7cb4fa102c13 (diff)
downloadsamba-c506ffa527428897689dfd9ff48719208c47669d.tar.gz
fixed fork() on SunOS4
Diffstat (limited to 'source/smbwrapper')
-rw-r--r--source/smbwrapper/realcalls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbwrapper/realcalls.h b/source/smbwrapper/realcalls.h
index 1a201895b6d..9bca0a7ec13 100644
--- a/source/smbwrapper/realcalls.h
+++ b/source/smbwrapper/realcalls.h
@@ -65,7 +65,7 @@
#elif HAVE___FORK
#define real_fork() (__fork())
#elif SYS_fork
-#define real_fork() (syscall(SYS_fork,()))
+#define real_fork() (syscall(SYS_fork))
#endif
#ifdef HAVE__OPENDIR