]> git.sesse.net Git - vlc/commitdiff
Oops.
authorAntoine Cellerier <dionoea@videolan.org>
Thu, 1 Mar 2007 22:54:12 +0000 (22:54 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Thu, 1 Mar 2007 22:54:12 +0000 (22:54 +0000)
src/text/strings.c

index 0f7073489a6c8669689b0712ec9e29e19332fa70..532e54c949cfe010539e3ccdbf82beb583bc0633 100644 (file)
@@ -807,11 +807,11 @@ void filename_sanitize( char *str )
             case '\\':
             case '*':
             case '"':
-            case "?":
+            case '?':
             case ':':
             case '|':
             case '<':
-            case '>'
+            case '>':
 #endif
                 *str = '_';
         }
@@ -831,11 +831,11 @@ void path_sanitize( char *str )
         {
             case '*':
             case '"':
-            case "?":
+            case '?':
             case ':':
             case '|':
             case '<':
-            case '>'
+            case '>':
                 *str = '_';
         }
         str++;