diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2002-10-25 22:25:03 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2002-10-25 22:25:03 +0000 |
commit | e05002b1a25439b9c55fa02098c456de0514d78e (patch) | |
tree | 8b8adbf09bddf52d897c2011cd100585fca96332 /games/gtkballs | |
parent | f9d17c10faa06da6f1d26e77d3a64e5fd70dd125 (diff) | |
download | ports-e05002b1a25439b9c55fa02098c456de0514d78e.tar.gz ports-e05002b1a25439b9c55fa02098c456de0514d78e.zip |
Notes
Diffstat (limited to 'games/gtkballs')
-rw-r--r-- | games/gtkballs/files/patch-src::themerc.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/games/gtkballs/files/patch-src::themerc.c b/games/gtkballs/files/patch-src::themerc.c new file mode 100644 index 000000000000..79a7685e1263 --- /dev/null +++ b/games/gtkballs/files/patch-src::themerc.c @@ -0,0 +1,54 @@ +--- src/themerc.c.orig Fri Oct 25 23:11:17 2002 ++++ src/themerc.c Fri Oct 25 23:11:20 2002 +@@ -18,31 +18,31 @@ + gchar *rc,**rcs; + + if((fd=open(fname, O_RDONLY))==-1) { +- fprintf(stderr, __func__ ": open() %s failed: %s\n", fname, strerror(errno)); ++ fprintf(stderr, "%s: open() %s failed: %s\n", __FUNCTION__, fname, strerror(errno)); + return NULL; + } + if((fstat(fd, &fds))==-1) { + close(fd); +- fprintf(stderr, __func__ ": fstat() failed: %s\n", strerror(errno)); ++ fprintf(stderr, "%s: fstat() failed: %s\n", __FUNCTION__, strerror(errno)); + return NULL; + } + if(!(fds.st_size)) { + close(fd); +- fprintf(stderr, __func__ ": zero length file.\n"); ++ fprintf(stderr, "%s: zero length file.\n", __FUNCTION__); + return NULL; + } + if(!(rc=malloc(fds.st_size+1))) { + close(fd); +- fprintf(stderr, __func__ ": malloc() failed: cannot alloc %d bytes\n", (int)fds.st_size); ++ fprintf(stderr, "%s: malloc() failed: cannot alloc %d bytes\n", __FUNCTION__, (int)fds.st_size); + return NULL; + } + if((rb=read(fd, rc, fds.st_size))!=fds.st_size) { + free(rc); + close(fd); + if(rb==-1) { +- fprintf(stderr, __func__ ": read() failed: %s\n", strerror(errno)); ++ fprintf(stderr, "%s: read() failed: %s\n", __FUNCTION__, strerror(errno)); + } else { +- fprintf(stderr, __func__ ": read() reads less bytes than expected =/\n"); ++ fprintf(stderr, "%s: read() reads less bytes than expected =/\n", __FUNCTION__); + } + return NULL; + } +@@ -66,11 +66,11 @@ + gchar **strval,*val; + + if(!rcs) { +- fprintf(stderr, __func__ " called with uninitialised rcs. strange. \n"); ++ fprintf(stderr, "%s called with uninitialised rcs. strange. \n", __FUNCTION__); + return NULL; + } + if(!param) { +- fprintf(stderr, __func__ " called with NULL param. strange. \n"); ++ fprintf(stderr, "%s called with NULL param. strange. \n", __FUNCTION__); + return NULL; + } + for(i=0;rcs[i];i++) { |