[Dancer-changes] dancer/src trio.c,1.1.1.1,1.2
Brought to you by:
bagder
|
From: <ho...@us...> - 2003-09-14 19:14:13
|
Update of /cvsroot/dancer/dancer/src In directory sc8-pr-cvs1:/tmp/cvs-serv32259 Modified Files: trio.c Log Message: Fix compile problems on Debian GNU/Linux / Alpha -- gcc (GCC) 3.3.2 20030908 (Debian prerelease) Patch and testing by boll at debian.org Index: trio.c =================================================================== RCS file: /cvsroot/dancer/dancer/src/trio.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- trio.c 13 Nov 2000 02:42:50 -0000 1.1.1.1 +++ trio.c 14 Sep 2003 19:14:06 -0000 1.2 @@ -1863,7 +1863,7 @@ assert(VALID(OutStream)); assert(VALID(format)); - assert(VALID(args)); + assert(VALID(&args)); memset(&internalData, 0, sizeof(internalData)); data = &internalData; @@ -2144,7 +2144,7 @@ trio_vprintf(const char *format, va_list args) { assert(VALID(format)); - assert(VALID(args)); + assert(VALID(&args)); return TrioFormat(stdout, 0, TrioFilePutChar, format, args); } @@ -2175,7 +2175,7 @@ { assert(VALID(fd)); assert(VALID(format)); - assert(VALID(args)); + assert(VALID(&args)); return TrioFormat(fd, 0, TrioFilePutChar, format, args); } @@ -2209,7 +2209,7 @@ assert(VALID(buffer)); assert(VALID(format)); - assert(VALID(args)); + assert(VALID(&args)); rc = TrioFormat(&buffer, 0, TrioStoreBuffer, format, args); *buffer = NIL; @@ -2248,7 +2248,7 @@ assert(VALID(buffer)); assert(VALID(format)); - assert(VALID(args)); + assert(VALID(&args)); rc = TrioFormat(&buffer, bufferSize - 1, TrioStoreBufferMax, format, args); @@ -2378,7 +2378,7 @@ struct dynamicBuffer info; assert(VALID(format)); - assert(VALID(args)); + assert(VALID(&args)); info.buffer = NULL; info.len = 0; @@ -2569,7 +2569,7 @@ assert(VALID(InStream)); assert(VALID(format)); - assert(VALID(args)); + assert(VALID(&args)); memset(&internalData, 0, sizeof(internalData)); data = &internalData; |