include prototypes for malloc and realloc - fix 64-bit warnings

This commit is contained in:
wilfried 2008-07-01 08:27:52 +00:00
parent 0983c4bdbd
commit be63e8be90
2 changed files with 36 additions and 2 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.10 2007/09/15 20:04:19 merdely Exp $
# $OpenBSD: Makefile,v 1.11 2008/07/01 08:27:52 wilfried Exp $
COMMENT= X11 file manager. Dockable in Window Maker
DISTNAME= ASFiles-1.0
PKGNAME= ${DISTNAME:L}
PKGNAME= ${DISTNAME:L}p0
CATEGORIES= x11 x11/windowmaker
MAINTAINER= Peter Stromberg <wilfried@openbsd.org>

View File

@ -0,0 +1,34 @@
$OpenBSD: patch-src_Comms_c,v 1.1 2008/07/01 08:27:52 wilfried Exp $
--- src/Comms.c.orig Fri Jan 3 13:16:06 1997
+++ src/Comms.c Mon Jun 30 17:05:56 2008
@@ -10,6 +10,7 @@
#include <X11/Intrinsic.h>
#include <X11/Shell.h>
+#include <stdlib.h>
#include "Files.h"
#include "Comms.h"
@@ -90,11 +91,11 @@ void openRemoteDirs(Display *dpy, Window files, int ar
}
/* get working dir */
bufsize = MAXPATHLEN;
- if (!(buf = (char*)malloc(bufsize))) exit(1);
+ if (!(buf = malloc(bufsize))) exit(1);
while(!getcwd(buf, bufsize))
{
bufsize += MAXPATHLEN;
- if (!(buf = (char*)realloc(buf, bufsize))) exit(1);
+ if (!(buf = realloc(buf, bufsize))) exit(1);
}
strcat(buf, "/");
s = buf+strlen(buf);
@@ -106,7 +107,7 @@ void openRemoteDirs(Display *dpy, Window files, int ar
if (bufsize>strlen(buf)+strlen(*argv))
strcat(buf, *argv++);
else
- if (!(buf = (char*)realloc(buf,strlen(buf)+strlen(*argv)+1)))
+ if (!(buf = realloc(buf,strlen(buf)+strlen(*argv)+1)))
exit(1);
else
strcat(buf, *argv++);