summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets
diff options
context:
space:
mode:
authorDylan Noblesmith <nobled@dreamwidth.org>2012-04-01 19:57:57 +0000
committerDylan Noblesmith <nobled@dreamwidth.org>2012-04-13 14:25:08 +0000
commit2bb91274e2cc2290ce8e790335f1e57b81d9d783 (patch)
treec7adb7fddbc162e385b60eb4a7820d2861d66286 /src/gallium/targets
parent6a491b5728fcfb928612182fa87212eeb2253917 (diff)
downloadexternal_mesa3d-2bb91274e2cc2290ce8e790335f1e57b81d9d783.zip
external_mesa3d-2bb91274e2cc2290ce8e790335f1e57b81d9d783.tar.gz
external_mesa3d-2bb91274e2cc2290ce8e790335f1e57b81d9d783.tar.bz2
egl-static: fix printf warning
Noticed by clang: egl_st.c:57:50: warning: field precision should have type 'int', but argument has type 'size_t' (aka 'unsigned long') [-Wformat] ret = util_snprintf(path, sizeof(path), "%.*s/%s" UTIL_DL_EXT, ~~^~ NOTE: This is a candidate for the 8.0 branch. Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r--src/gallium/targets/egl-static/egl_st.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/targets/egl-static/egl_st.c b/src/gallium/targets/egl-static/egl_st.c
index 81d7bb4..67e3c29 100644
--- a/src/gallium/targets/egl-static/egl_st.c
+++ b/src/gallium/targets/egl-static/egl_st.c
@@ -54,8 +54,9 @@ dlopen_gl_lib_cb(const char *dir, size_t len, void *callback_data)
int ret;
if (len) {
+ assert(len <= INT_MAX && "path is insanely long!");
ret = util_snprintf(path, sizeof(path), "%.*s/%s" UTIL_DL_EXT,
- len, dir, name);
+ (int)len, dir, name);
}
else {
ret = util_snprintf(path, sizeof(path), "%s" UTIL_DL_EXT, name);