From: <ny...@us...> - 2006-07-02 11:16:50
|
Revision: 104 Author: nyaochi Date: 2006-07-02 04:16:45 -0700 (Sun, 02 Jul 2006) ViewCVS: http://svn.sourceforge.net/pmplib/?rev=104&view=rev Log Message: ----------- Fixed a build problem (ssize_t -> size_t). Modified Paths: -------------- trunk/frontend/easypmp/common/enumerate.c Modified: trunk/frontend/easypmp/common/enumerate.c =================================================================== --- trunk/frontend/easypmp/common/enumerate.c 2006-07-02 02:38:18 UTC (rev 103) +++ trunk/frontend/easypmp/common/enumerate.c 2006-07-02 11:16:45 UTC (rev 104) @@ -95,7 +95,7 @@ enumerate_dat_t ed; // Decode the music path prefix for system path separators - ssize_t prefix_length = ucs2len(pmp->env.path_to_music.path); + size_t prefix_length = ucs2len(pmp->env.path_to_music.path); ucs2char_t *music_path = alloca(sizeof(ucs2char_t) * (prefix_length + 1)); ucs2cpy(music_path, pmp->env.path_to_music.path); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |