summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-12-15 22:56:46 +0000
committerOle Loots <ole@monochrom.net>2011-12-15 22:56:46 +0000
commit3eb8e6ad5de3f4da3a983ded355fdcbfe86a87d9 (patch)
treedfc8a205e3903bd2fc947bef5e2b518e985f04af
parent359bf3ccd621018c98cd55cca9321d0336fe4a82 (diff)
downloadnetsurf-3eb8e6ad5de3f4da3a983ded355fdcbfe86a87d9.tar.gz
netsurf-3eb8e6ad5de3f4da3a983ded355fdcbfe86a87d9.tar.bz2
fixed type.
svn path=/trunk/netsurf/; revision=13275
-rwxr-xr-xatari/findfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/atari/findfile.c b/atari/findfile.c
index 55881a11d..3a06f61e9 100755
--- a/atari/findfile.c
+++ b/atari/findfile.c
@@ -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] = '/';
}