fixed type.

svn path=/trunk/netsurf/; revision=13275
This commit is contained in:
Ole Loots 2011-12-15 22:56:46 +00:00
parent 359bf3ccd6
commit 3eb8e6ad5d
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ char * local_file_to_url( const char * filename )
}
/* convert backslashes: */
for( int i=0; i<strlen(start); i++ ){
for( unsigned int i=0; i<strlen(start); i++ ){
if( start[i] == BACKSLASH ){
start[i] = '/';
}