diff lib/xwrap.c @ 1183:0752b2d58909 draft

Rename xmsprintf() to just xmprintf(). Partly because there's no supplied target string ala sprintf, and partly because I can never remember what order the m and s go in.
author Rob Landley <rob@landley.net>
date Thu, 16 Jan 2014 09:26:50 -0600
parents 8afe1fde9314
children 468444e5c7c5
line wrap: on
line diff
--- a/lib/xwrap.c	Wed Jan 15 09:38:31 2014 -0600
+++ b/lib/xwrap.c	Thu Jan 16 09:26:50 2014 -0600
@@ -66,7 +66,7 @@
 }
 
 // Die unless we can allocate enough space to sprintf() into.
-char *xmsprintf(char *format, ...)
+char *xmprintf(char *format, ...)
 {
   va_list va, va2;
   int len;