Changeset - r11270:7b8efbc5d599
[Not reviewed]
master
0 1 0
smatz - 15 years ago 2009-03-05 22:55:47
smatz@openttd.org
(svn r15624) -Fix (r15621): warning about comparing signed and unsigned integer types
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/vehicle.cpp
Show inline comments
 
@@ -1195,7 +1195,7 @@ static void CloneVehicleName(const Vehic
 
	char buf[256];
 

	
 
	/* Find the position of the first digit in the last group of digits. */
 
	int number_position;
 
	size_t number_position;
 
	for (number_position = strlen(src->name); number_position > 0; number_position--) {
 
		/* The design of UTF-8 lets this work simply without having to check
 
		 * for UTF-8 sequences. */
0 comments (0 inline, 0 general)