snprintf -> util_snprintf
authorAlan Hourihane <alanh@tungstengraphics.com>
Fri, 2 May 2008 15:25:37 +0000 (15:25 +0000)
committerAlan Hourihane <alanh@tungstengraphics.com>
Fri, 2 May 2008 15:26:45 +0000 (15:26 +0000)
src/mesa/state_tracker/st_cb_strings.c

index 247519ab3de7adc27d3844de61399cc0fd5aebce..066124f8f30a5fd9e4b729d05ddf58b6f0d34b59 100644 (file)
@@ -53,21 +53,21 @@ st_get_string(GLcontext * ctx, GLenum name)
       const char *vendor = screen->get_vendor( screen );
       const char *tungsten = "Tungsten Graphics, Inc.";
 
-      /* Tungsten developed the state_tracker module (and much of
-       * Mesa), but the driver itself may come from elsewhere.  The
-       * additional string allows "and XyzCorp" to reflect this.
+      /* Tungsten Graphics, Inc. developed the state_tracker module
+       * (and much of Mesa), but the driver itself may come from elsewhere.
+       * The additional string allows "and XyzCorp" to reflect this.
        */
       if (vendor && strcmp(vendor, tungsten) != 0)
-        snprintf(st->vendor, sizeof(st->vendor),
+        util_snprintf(st->vendor, sizeof(st->vendor),
                   "%s and %s", tungsten, vendor);
       else
-        snprintf(st->vendor, sizeof(st->vendor), "%s", tungsten);
+        util_snprintf(st->vendor, sizeof(st->vendor), "%s", tungsten);
 
       return (GLubyte *) st->vendor;
    }
 
    case GL_RENDERER:
-      snprintf(st->renderer, sizeof(st->renderer), "Gallium %s, %s on %s", 
+      util_snprintf(st->renderer, sizeof(st->renderer), "Gallium %s, %s on %s", 
                ST_VERSION_STRING,
               screen->get_name( screen ),
               screen->winsys->get_name( screen->winsys ));