Mercurial > audlegacy
diff src/audacious/tuple_compiler.c @ 3816:aad4dc862bc7 trunk
Use g_snprintf()
| author | Matti Hamalainen <ccr@tnsp.org> |
|---|---|
| date | Sat, 20 Oct 2007 06:04:33 +0300 |
| parents | e17726ffadbb |
| children | 5ea2431c12bf |
line wrap: on
line diff
--- a/src/audacious/tuple_compiler.c Sat Oct 20 06:03:52 2007 +0300 +++ b/src/audacious/tuple_compiler.c Sat Oct 20 06:04:33 2007 +0300 @@ -637,7 +637,7 @@ break; case TUPLE_INT: - snprintf(tmps, sizeof(tmps), "%d", var0->fieldref->value.integer); + g_snprintf(tmps, sizeof(tmps), "%d", var0->fieldref->value.integer); str = tmps; break;
