aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/util.cpp')
-rw-r--r--engines/gob/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/util.cpp b/engines/gob/util.cpp
index 6fcba7ac12..31f7cb6a67 100644
--- a/engines/gob/util.cpp
+++ b/engines/gob/util.cpp
@@ -428,7 +428,7 @@ void Util::listInsertBack(List *list, void *data) {
if (list->pHead != 0) {
if (list->pTail == 0) {
list->pTail = list->pHead;
- warning("listInsertBack: Broken list");
+ warning("Util::listInsertBack(): Broken list");
}
node = new ListNode;