diff options
author | Oliver Kiehl | 2003-10-22 11:15:09 +0000 |
---|---|---|
committer | Oliver Kiehl | 2003-10-22 11:15:09 +0000 |
commit | 016c90911ed73b8f4498d6192172c1882062e18c (patch) | |
tree | 12b3d5cc3a6498e5654be8bfd925ef82e4ffa7e2 | |
parent | 48b9e18086d1b1518a73164d03f10c9229e9ed81 (diff) | |
download | scummvm-rg350-016c90911ed73b8f4498d6192172c1882062e18c.tar.gz scummvm-rg350-016c90911ed73b8f4498d6192172c1882062e18c.tar.bz2 scummvm-rg350-016c90911ed73b8f4498d6192172c1882062e18c.zip |
fix gcc 3.3.2 warning
svn-id: r10942
-rw-r--r-- | simon/simon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index ac9b12a9e2..24c5f6f64b 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -2860,7 +2860,7 @@ get_out:; void SimonEngine::o_file_error(FillOrCopyStruct *fcs, bool save_error) { HitArea *ha; - char *string, *string2; + const char *string, *string2; if (save_error) { string = "\r Save failed."; |