diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-04-20 11:29:46 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-04-20 11:29:46 +0000 |
| commit | 6eb60ebb0845e306e0896732a315c2ed9ac6232f (patch) | |
| tree | 68e0b64758e8c05c016341284c92066092983402 | |
| parent | 6cc6e8b9c44beb4811b3d57c270632b84e380172 (diff) | |
| download | rockbox-6eb60ebb0845e306e0896732a315c2ed9ac6232f.zip rockbox-6eb60ebb0845e306e0896732a315c2ed9ac6232f.tar.gz rockbox-6eb60ebb0845e306e0896732a315c2ed9ac6232f.tar.bz2 rockbox-6eb60ebb0845e306e0896732a315c2ed9ac6232f.tar.xz | |
Fixed win32 sim error
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4525 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/win32/dir-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/win32/dir-win32.c b/uisimulator/win32/dir-win32.c index d857521..dfdb636 100644 --- a/uisimulator/win32/dir-win32.c +++ b/uisimulator/win32/dir-win32.c @@ -28,7 +28,7 @@ // opendir // open directory for scanning DIR *opendir ( - char *dirname // directory name + const char *dirname // directory name ) { DIR *p = (DIR*)malloc(sizeof(DIR)); |