[Liboss-commit] CVS: liboss/lib esddsp.c,1.12,1.13
Brought to you by:
thesin
|
From: Justin <th...@us...> - 2002-11-06 23:50:53
|
Update of /cvsroot/liboss/liboss/lib
In directory usw-pr-cvs1:/tmp/cvs-serv23404/lib
Modified Files:
esddsp.c
Log Message:
clean up out left over va_end calls, since they are done in the header now
Index: esddsp.c
===================================================================
RCS file: /cvsroot/liboss/liboss/lib/esddsp.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- esddsp.c 6 Nov 2002 23:34:45 -0000 1.12
+++ esddsp.c 6 Nov 2002 23:50:49 -0000 1.13
@@ -171,7 +171,6 @@
func = (int (*) (const char *, int, mode_t)) dlsym (REAL_LIBC, "_open");
mode = va_arg (args, int);
- va_end (args);
if (!strcmp (pathname, "/dev/dsp"))
{
@@ -370,7 +369,6 @@
func = (int (*) (int, request_t, void *)) dlsym (REAL_LIBC, "_ioctl");
argp = va_arg (args, void *);
- va_end (args);
if (fd == sndfd)
return dspctl (fd, request, argp);
|