Browse Source

- Fixed dumb warning (follow up to r16950) -_-

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16951 54d463be-8e91-2dee-dedb-b68131a5f0ec
momacabu 12 years ago
parent
commit
f21454e1db
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/tool/mapcache.c

+ 1 - 1
src/tool/mapcache.c

@@ -176,7 +176,7 @@ void cache_map(char *name, struct map_data *m)
 	encode_zip(write_buf, &len, m->cells, m->xs*m->ys);
 
 	// Fill the map header
-	if (name > MAP_NAME_LENGTH) // It does not hurt to warn that there are maps with name longer than allowed.
+	if (sizeof(name) > MAP_NAME_LENGTH) // It does not hurt to warn that there are maps with name longer than allowed.
 		ShowWarning ("Map name '%s' size '%d' is too long. Truncating to '%d'.\n", name, sizeof(name), MAP_NAME_LENGTH);
 	strncpy(info.name, name, MAP_NAME_LENGTH);
 	info.xs = MakeShortLE(m->xs);