A const-correctness fix from Diego.
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Sat, 23 May 2009 02:16:41 +0000 (02:16 +0000)
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Sat, 23 May 2009 02:16:41 +0000 (02:16 +0000)
git-svn-id: http://svn.complang.org/ragel/trunk@871 052ea7fc-9027-0410-9066-f65837a77df0

ragel/main.cpp

index a16a50a..1330cf8 100644 (file)
@@ -507,7 +507,7 @@ char *makeIntermedTemplate( const char *baseFileName )
 {
        char *result = 0;
        const char *templ = "ragel-XXXXXX.xml";
-       char *lastSlash = strrchr( baseFileName, '/' );
+       const char *lastSlash = strrchr( baseFileName, '/' );
        if ( lastSlash == 0 ) {
                result = new char[strlen(templ)+1];
                strcpy( result, templ );