wok annotate visualboyadvance/stuff/1.7.2-homedir.patch @ rev 13316

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 30 08:52:08 2012 +0200 (2012-08-30)
parents
children
rev   line source
gokhlayeh@7031 1 --- src/sdl/SDL.cpp.orig 2004-08-15 02:43:28.232750688 -0400
gokhlayeh@7031 2 +++ src/sdl/SDL.cpp 2004-08-15 02:44:01.557684528 -0400
gokhlayeh@7031 3 @@ -887,7 +887,7 @@
gokhlayeh@7031 4
gokhlayeh@7031 5 if(home != NULL) {
gokhlayeh@7031 6 fprintf(stderr, "Searching home directory: %s\n", home);
gokhlayeh@7031 7 - sprintf(path, "%s%c%s", home, FILE_SEP, name);
gokhlayeh@7031 8 + sprintf(path, "%s%c.%s%c%s", home, FILE_SEP, EXE_NAME, FILE_SEP, name);
gokhlayeh@7031 9 f = fopen(path, "r");
gokhlayeh@7031 10 if(f != NULL)
gokhlayeh@7031 11 return f;