diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2010-05-07 16:35:37 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2010-05-07 16:35:37 +0000 |
| commit | b08222caec009f504ae4ab0b9c0355597b612377 (patch) | |
| tree | 80b2d2e0f0082d1bbf66ea8337fe146a2765b8ef /apps/tree.c | |
| parent | feecb7d4beed9dc58a82201acd692631cdf6d0b3 (diff) | |
| download | rockbox-b08222caec009f504ae4ab0b9c0355597b612377.zip rockbox-b08222caec009f504ae4ab0b9c0355597b612377.tar.gz rockbox-b08222caec009f504ae4ab0b9c0355597b612377.tar.bz2 rockbox-b08222caec009f504ae4ab0b9c0355597b612377.tar.xz | |
Minor const police raid.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25879 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
| -rw-r--r-- | apps/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c index 8fbc793..204ebb9 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -1068,7 +1068,7 @@ bool bookmark_play(char *resume_file, int index, int offset, int seed, lastdir[0]='\0'; if (playlist_create(resume_file, NULL) != -1) { - char* peek_filename; + const char* peek_filename; resume_directory(resume_file); if (global_settings.playlist_shuffle) playlist_shuffle(seed, -1); |