diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-10-20 22:54:08 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-10-21 00:34:06 -0700 |
commit | 098ecfad83a63bd8eb04c37f268c18d8744dff2c (patch) | |
tree | 73358839027aba1704f34c86a76db8f9e70c791c /src/glx/apple | |
parent | 7a3bbd3d5d551ede6c8cbd2b0ac8ef005ee9e043 (diff) |
apple: Silence some debug spew
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'src/glx/apple')
-rw-r--r-- | src/glx/apple/appledri.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glx/apple/appledri.c b/src/glx/apple/appledri.c index 46c84f3ab7..e3f9b84728 100644 --- a/src/glx/apple/appledri.c +++ b/src/glx/apple/appledri.c @@ -332,12 +332,12 @@ XAppleDRICreateSharedBuffer(Display * dpy, int screen, Drawable drawable, return False; } - printf("rep.stringLength %d\n", (int) rep.stringLength); + /* printf("rep.stringLength %d\n", (int) rep.stringLength); */ if (rep.stringLength > 0 && rep.stringLength <= pathlen) { _XReadPad(dpy, path, rep.stringLength); - printf("path: %s\n", path); + /* printf("path: %s\n", path); */ *width = rep.width; *height = rep.height; @@ -404,7 +404,7 @@ XAppleDRICreatePixmap(Display * dpy, int screen, Drawable drawable, if (rep.stringLength > 0 && rep.stringLength <= bufnamesize) { _XReadPad(dpy, bufname, rep.stringLength); - printf("path: %s\n", bufname); + /* printf("path: %s\n", bufname); */ *width = rep.width; *height = rep.height; |