diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2012-04-29 00:27:03 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2012-05-03 10:58:33 -0700 |
commit | 244dc0521439379a0a44f81ba432aa04ca6c1a91 (patch) | |
tree | fba82a698e5571f1c64dee1616d0d1bdced062a9 | |
parent | c384c5d4d733244c9922638eebb20b05f465df62 (diff) |
darwin: Fix an error message
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
-rw-r--r-- | src/glx/apple/apple_glx_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/apple/apple_glx_context.c b/src/glx/apple/apple_glx_context.c index c58d05a59a..0bb25b4257 100644 --- a/src/glx/apple/apple_glx_context.c +++ b/src/glx/apple/apple_glx_context.c @@ -421,7 +421,7 @@ apple_glx_make_current_context(Display * dpy, void *oldptr, void *ptr, */ if (same_drawable && ac->is_current) { - apple_glx_diagnostic("%s: same_drawable and ac->is_current\n"); + apple_glx_diagnostic("same_drawable and ac->is_current\n"); return false; } |