From: TimePath Date: Thu, 24 Sep 2015 08:00:09 +0000 (+1000) Subject: Fix transposed sprintf arguments X-Git-Tag: xonotic-v0.8.2~1886^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0c81c3002f50a4033a9c06670bd9dd759c54c6f3;p=xonotic%2Fxonotic-data.pk3dir.git Fix transposed sprintf arguments --- diff --git a/qcsrc/lib/spawnfunc.qh b/qcsrc/lib/spawnfunc.qh index e443552ec..c474104d6 100644 --- a/qcsrc/lib/spawnfunc.qh +++ b/qcsrc/lib/spawnfunc.qh @@ -32,7 +32,7 @@ bool entityfieldassignablefromeditor(int i) { if (fieldname == "") continue; \ FIELDS_COMMON(_spawnfunc_check) \ whitelist(_spawnfunc_check) \ - LOG_WARNINGF(_("Entity field %s.%s (%s) is not whitelisted. If you believe this is an error, please file an issue.\n"), fieldname, #id, value); \ + LOG_WARNINGF(_("Entity field %s.%s (%s) is not whitelisted. If you believe this is an error, please file an issue.\n"), #id, fieldname, value); \ } \ this.spawnfunc_checked = true; \ } \