Commit 0b1b91c77ca0b2fddaeb030cb3555c9d0f4f8f66
1 parent
a1b91bb4
typo fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3715 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
target-i386/helper2.c
| ... | ... | @@ -83,7 +83,7 @@ static void add_flagname_to_bitmaps(char *flagname, uint32_t *features, |
| 83 | 83 | return; |
| 84 | 84 | } |
| 85 | 85 | for ( i = 0 ; i < 32 ; i++ ) |
| 86 | - if (ext3_features[i] && !strcmp (flagname, ext3_feature_name[i])) { | |
| 86 | + if (ext3_feature_name[i] && !strcmp (flagname, ext3_feature_name[i])) { | |
| 87 | 87 | *ext3_features |= 1 << i; |
| 88 | 88 | return; |
| 89 | 89 | } | ... | ... |