]> git.pld-linux.org Git - packages/d4x.git/blame - d4x-elif_fix.patch
updated
[packages/d4x.git] / d4x-elif_fix.patch
CommitLineData
7bbe5e3f 1--- main/sndserv.cc~ Thu Mar 28 10:40:39 2002
2+++ main/sndserv.cc Thu Jul 18 10:37:07 2002
3@@ -135,7 +135,7 @@
4
5 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
6 *len =(buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
7-#elif
8+#else
9 *len =(buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
10 #endif
11
12@@ -148,7 +148,7 @@
13 return 0;
14 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
15 *val = (buf[1] << 8) | buf[0];
16-#elif
17+#else
18 *val = (buf[0] << 8) | buf[1];
19 #endif
20 return 1;
This page took 0.06525 seconds and 4 git commands to generate.