summaryrefslogtreecommitdiff
path: root/xf86drm.h
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2014-01-22 12:06:51 +0100
committerThierry Reding <treding@nvidia.com>2014-04-17 16:21:40 +0200
commit44b08c0ddf7ced99a5914421f18b269a1dcaafae (patch)
tree606eddc88e391a7c1f32f9c2c2cec162ceab6cd3 /xf86drm.h
parent7974b539d2b46167972b9109046a45dbe852ae4c (diff)
Mark functions printf-like where possible
These functions all take a format string and either a list of variable arguments or a va_list. Use the new DRM_PRINTFLIKE macro to tell the compiler about it so that the arguments can be checked against the format string. Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'xf86drm.h')
-rw-r--r--xf86drm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xf86drm.h b/xf86drm.h
index 5e170f86..c024cc44 100644
--- a/xf86drm.h
+++ b/xf86drm.h
@@ -704,7 +704,7 @@ extern int drmSLLookupNeighbors(void *l, unsigned long key,
extern int drmOpenOnce(void *unused, const char *BusID, int *newlyopened);
extern void drmCloseOnce(int fd);
-extern void drmMsg(const char *format, ...);
+extern void drmMsg(const char *format, ...) DRM_PRINTFLIKE(1, 2);
extern int drmSetMaster(int fd);
extern int drmDropMaster(int fd);