mirror of https://github.com/xemu-project/xemu.git
typo fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3715 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
a1b91bb406
commit
0b1b91c77c
|
@ -83,7 +83,7 @@ static void add_flagname_to_bitmaps(char *flagname, uint32_t *features,
|
|||
return;
|
||||
}
|
||||
for ( i = 0 ; i < 32 ; i++ )
|
||||
if (ext3_features[i] && !strcmp (flagname, ext3_feature_name[i])) {
|
||||
if (ext3_feature_name[i] && !strcmp (flagname, ext3_feature_name[i])) {
|
||||
*ext3_features |= 1 << i;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue