From: <ny...@us...> - 2006-06-06 20:06:03
|
Revision: 53 Author: nyaochi Date: 2006-06-06 13:05:51 -0700 (Tue, 06 Jun 2006) ViewCVS: http://svn.sourceforge.net/pmplib/?rev=53&view=rev Log Message: ----------- Fixed warning C4114 in MSVC. "const char const*" seems to be a wrong usage of 'const'. Modified Paths: -------------- trunk/frontend/easypmp/cui/device.c Modified: trunk/frontend/easypmp/cui/device.c =================================================================== --- trunk/frontend/easypmp/cui/device.c 2006-06-06 17:43:27 UTC (rev 52) +++ trunk/frontend/easypmp/cui/device.c 2006-06-06 20:05:51 UTC (rev 53) @@ -44,7 +44,7 @@ } // Display a path name using the given string format. -void device_show_path(FILE *fp, const char const* format, const ucs2char_t const* path) +void device_show_path(FILE *fp, const char* const format, const ucs2char_t* const path) { ucs2char_t decoded_path[MAX_PATH]; ucs2cpy(decoded_path, path); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |