target-mips: fix warning
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 14 Sep 2008 16:28:26 +0000 (16:28 +0000)
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 14 Sep 2008 16:28:26 +0000 (16:28 +0000)
Attached patch fixes a warning in cpu_mips_find_by_name().
'name' is a string, so it should be declared as char*, not unsigned char*.

(HervĂ© Poussineau)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5213 c046a42c-6fe2-441c-8c8c-71466251a162

target-mips/translate_init.c

index 93931ae0201226bc4bd91145cc43fa14b35d187c..8270c59901c6093d5eb1b3a7dfa2fe0a22175c0d 100644 (file)
@@ -417,7 +417,7 @@ static const mips_def_t mips_defs[] =
 #endif
 };
 
-static const mips_def_t *cpu_mips_find_by_name (const unsigned char *name)
+static const mips_def_t *cpu_mips_find_by_name (const char *name)
 {
     int i;