Fix clang warnings.

This commit is contained in:
Wilson Snyder
2015-02-10 22:38:05 -05:00
parent 099f797975
commit 32a76c5255
6 changed files with 43 additions and 20 deletions
+1 -1
View File
@@ -909,7 +909,7 @@ IData VL_SSCANF_IWX(int lbits, WDataInP lwp, const char* formatp, ...) {
va_end(ap);
return got;
}
IData VL_SSCANF_INX(int lbits, const string& ld, const char* formatp, ...) {
IData VL_SSCANF_INX(int, const string& ld, const char* formatp, ...) {
va_list ap;
va_start(ap,formatp);
IData got = _vl_vsscanf(NULL, ld.length()*8, NULL, ld, formatp, ap);