commit 574b1c03d5724f4665d90b864c5015b38978ba5a parent 78d71e6ddd2db55c6aa096351a3085b801b8c01d Author: Michael Savage <mikejsavage@gmail.com> Date: Sun Jan 8 22:07:17 +0200 Fix typo in str.h Diffstat:
str.h | | | 2 | +- |
diff --git a/str.h b/str.h @@ -82,7 +82,7 @@ public: void appendf( const char * fmt, ... ) { va_list argp; va_start( argp, fmt ); - appendf( argp, fmt ); + appendf( fmt, argp ); va_end( argp ); }