From 5aeb9d8b3e902eeedaa6a85f1f38afff06f85ac9 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 30 May 2007 14:38:17 +0000 Subject: Several const correctness fixes svn-id: r27011 --- engines/cruise/stringSupport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/cruise/stringSupport.cpp') diff --git a/engines/cruise/stringSupport.cpp b/engines/cruise/stringSupport.cpp index 1343ba146d..f8b453c2c6 100644 --- a/engines/cruise/stringSupport.cpp +++ b/engines/cruise/stringSupport.cpp @@ -35,7 +35,7 @@ void strcatuint8(void *dest, const void *source) { } uint8 strcmpuint8(const void *string1, const void *string2) { - return strcmp((char *)string1, (char *)string2); + return strcmp((const char *)string1, (const char *)string2); } } // End of namespace Cruise -- cgit v1.2.3 From 218e132e37017b64a61cce53c5dd26267a81784a Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 30 May 2007 21:56:52 +0000 Subject: Updated legal headers in source files, based on what Pidgin (the IM client formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024 --- engines/cruise/stringSupport.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'engines/cruise/stringSupport.cpp') diff --git a/engines/cruise/stringSupport.cpp b/engines/cruise/stringSupport.cpp index f8b453c2c6..791f203d9b 100644 --- a/engines/cruise/stringSupport.cpp +++ b/engines/cruise/stringSupport.cpp @@ -1,7 +1,8 @@ -/* ScummVM - Scumm Interpreter - * Copyright (C) 2006 The ScummVM project +/* ScummVM - Graphic Adventure Engine * - * cinE Engine is (C) 2004-2005 by CinE Team + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License -- cgit v1.2.3