Changeset 180 for cpp/common/framsg.cpp
- Timestamp:
- 03/18/14 09:11:39 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/framsg.cpp
r122 r180 5 5 #include "framsg.h" 6 6 #include <common/nonstd_stdio.h> 7 #include "stl-util.h" 7 8 #include "Convert.h" 8 9 … … 11 12 void FMprintf_va(const char *o,const char *m,int w,const char *bl,va_list va) 12 13 { 13 char buf[10000]; 14 vsnprintf(buf,10000,bl,va); 15 FramMessage(o,m,buf,w); 14 string buf=ssprintf_va(bl,va); 15 FramMessage(o,m,buf.c_str(),w); 16 16 } 17 17
Note: See TracChangeset
for help on using the changeset viewer.