pike.git/
src/
modules/
Image/
encodings/
xcf.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-08-25
2014-08-25 18:29:35 by Martin Nilsson <nilsson@opera.com>
de22f7b7515e80d09e82c995a4e73469d73ec19a (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.0
More consistent use of error macros.
101:
if (args != 2 ) SIMPLE_TOO_FEW_ARGS_ERROR("_sprintf",2); if (TYPEOF(sp[-2]) != T_INT)
-
SIMPLE_BAD_ARG_ERROR("_sprintf",0,"
integer
");
+
SIMPLE_BAD_ARG_ERROR("_sprintf",0,"
int
");
if (TYPEOF(sp[-1]) != T_MAPPING) SIMPLE_BAD_ARG_ERROR("_sprintf",1,"mapping"); x = sp[-2].u.integer;