libXmu: Branch 'master'

Alan Coopersmith alanc at kemper.freedesktop.org
Thu Jun 6 22:20:21 PDT 2013


 src/StrToGrav.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e46ecb4e02b7f919b11efa79448d4db71d1deb69
Author: Thomas Klausner <wiz at NetBSD.org>
Date:   Sun Jun 2 21:10:27 2013 +0200

    Fix a const issue.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

diff --git a/src/StrToGrav.c b/src/StrToGrav.c
index ca8bb53..e7ad699 100644
--- a/src/StrToGrav.c
+++ b/src/StrToGrav.c
@@ -106,7 +106,7 @@ Boolean
 XmuCvtGravityToString(Display *dpy, XrmValue *args, Cardinal *num_args,
 		      XrmValue *fromVal, XrmValue *toVal, XtPointer *data)
 {
-  static char *buffer;
+  static const char *buffer;
   Cardinal size;
   struct _namepair *np;
   XtGravity gravity;


More information about the xorg-commit mailing list