From: Vinson Lee Date: Sat, 17 Jul 2010 01:03:03 +0000 (-0700) Subject: nouveau: s/snprintf/util_snprintf/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=37648b86b1fefd37dc285486cfb18969eeaa8df1;p=mesa.git nouveau: s/snprintf/util_snprintf/ --- diff --git a/src/gallium/drivers/nouveau/nouveau_screen.c b/src/gallium/drivers/nouveau/nouveau_screen.c index 6fe1eb69530..d1ec56df8c0 100644 --- a/src/gallium/drivers/nouveau/nouveau_screen.c +++ b/src/gallium/drivers/nouveau/nouveau_screen.c @@ -6,6 +6,7 @@ #include "util/u_inlines.h" #include "util/u_format.h" #include "util/u_format_s3tc.h" +#include "util/u_string.h" #include #include @@ -24,7 +25,7 @@ nouveau_screen_get_name(struct pipe_screen *pscreen) struct nouveau_device *dev = nouveau_screen(pscreen)->device; static char buffer[128]; - snprintf(buffer, sizeof(buffer), "NV%02X", dev->chipset); + util_snprintf(buffer, sizeof(buffer), "NV%02X", dev->chipset); return buffer; }