- Timestamp:
- 06/23/08 19:25:19 (4 years ago)
- File:
-
- 1 edited
-
branches/ithildin-1.1/source/string.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/ithildin-1.1/source/string.c
r778 r817 241 241 #undef vsnprintf 242 242 243 int ith_vsnprintf(char *str, size_t size, const char *pattern, va_list vl) {243 int ith_vsnprintf(char *str, size_t size, const char *pattern, va_list ap) { 244 244 char *s; 245 245 char *buf = str; 246 246 const char *format = pattern; 247 va_list ap = vl;248 247 int q = 0, u = 0, x = 0; 249 248 unsigned long i; … … 359 358 break; 360 359 #else 361 return vsnprintf(str, size, pattern, vl);360 return vsnprintf(str, size, pattern, ap); 362 361 break; 363 362 #endif
Note: See TracChangeset
for help on using the changeset viewer.
