diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-09-24 03:22:58 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-09-24 03:22:58 +0000 |
commit | 0975d66d2f06603f5e4016440b333aac88e2958a (patch) | |
tree | cd3767fb74c2475fd78bca9ff2d3ba825dd329f4 /src/process.cpp | |
parent | 17df4c2b9616c29865b0d893cc797d4938a660a2 (diff) | |
download | libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.gz libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.bz2 libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.tar.xz libbu++-0975d66d2f06603f5e4016440b333aac88e2958a.zip |
Ok, now all the warnings are gone (except for those coming from nids, but that's
ok, nids is still in flux, they'll be gone soon).
Diffstat (limited to '')
-rw-r--r-- | src/process.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.cpp b/src/process.cpp index 5781600..f04d9fb 100644 --- a/src/process.cpp +++ b/src/process.cpp | |||
@@ -24,7 +24,7 @@ Bu::Process::Process( const char *sName, const char *argv, ...) | |||
24 | int iCnt = 0; | 24 | int iCnt = 0; |
25 | va_list ap; | 25 | va_list ap; |
26 | va_start( ap, argv ); | 26 | va_start( ap, argv ); |
27 | for(; va_arg( ap, const char *); iCnt++ ); | 27 | for(; va_arg( ap, const char *); iCnt++ ) { } |
28 | va_end( ap ); | 28 | va_end( ap ); |
29 | 29 | ||
30 | char const **list = new char const *[iCnt+2]; | 30 | char const **list = new char const *[iCnt+2]; |
@@ -137,15 +137,15 @@ long Bu::Process::tell() | |||
137 | return 0; | 137 | return 0; |
138 | } | 138 | } |
139 | 139 | ||
140 | void Bu::Process::seek( long offset ) | 140 | void Bu::Process::seek( long ) |
141 | { | 141 | { |
142 | } | 142 | } |
143 | 143 | ||
144 | void Bu::Process::setPos( long pos ) | 144 | void Bu::Process::setPos( long ) |
145 | { | 145 | { |
146 | } | 146 | } |
147 | 147 | ||
148 | void Bu::Process::setPosEnd( long pos ) | 148 | void Bu::Process::setPosEnd( long ) |
149 | { | 149 | { |
150 | } | 150 | } |
151 | 151 | ||