aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2006-04-23 17:02:39 +0000
committerMax Horn2006-04-23 17:02:39 +0000
commit15ecef5b39a2356d3111a6b15f36a5f32df69901 (patch)
treefde634e8312e9113fae8a008475fb4c35dda060e /common
parentbeb72667dcf1f6141d9f2e08f73cc60adad34eea (diff)
downloadscummvm-rg350-15ecef5b39a2356d3111a6b15f36a5f32df69901.tar.gz
scummvm-rg350-15ecef5b39a2356d3111a6b15f36a5f32df69901.tar.bz2
scummvm-rg350-15ecef5b39a2356d3111a6b15f36a5f32df69901.zip
Remove superfluous exclamation mark
svn-id: r22108
Diffstat (limited to 'common')
-rw-r--r--common/file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/file.cpp b/common/file.cpp
index ec4dca0594..e124a5f90f 100644
--- a/common/file.cpp
+++ b/common/file.cpp
@@ -188,7 +188,7 @@ bool File::open(const String &filename, AccessMode mode, const char *directory)
assert(mode == kFileReadMode || mode == kFileWriteMode);
if (filename.empty()) {
- error("File::open: No filename was specified!");
+ error("File::open: No filename was specified");
}
if (_handle) {