Add a forgotten patch to fix the build on non_linux systems.

This commit is contained in:
Joe Marcus Clarke 2005-08-28 08:08:37 +00:00
parent 48631825b8
commit 45fbff598e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=141043

View File

@ -0,0 +1,13 @@
--- server/gam_pidname.c.orig Wed Aug 10 00:00:18 2005
+++ server/gam_pidname.c Wed Aug 10 00:00:47 2005
@@ -7,9 +7,9 @@
char *gam_get_pidname (int pid)
{
+ gchar *pidname = NULL;
#ifdef HAVE_LINUX
gchar *procname;
- gchar *pidname = NULL;
FILE *fp;
#endif