File diff r7015:f10c76653e81 → r7016:4751dbaac449
src/fileio.cpp
Show inline comments
 
@@ -532,6 +532,7 @@ void SanitizeFilename(char *filename)
 
			/* The following characters are not allowed in filenames
 
			 * on at least one of the supported operating systems: */
 
			case ':': case '\\': case '*': case '?': case '/':
 
			case '<': case '>': case '|': case '"':
 
				*filename = '_';
 
				break;
 
		}