msvcrt: Do not treat %ll as an IntegerDouble in printf.
diff --git a/dlls/msvcrt/wcs.c b/dlls/msvcrt/wcs.c
index 5ef929b..503a998 100644
--- a/dlls/msvcrt/wcs.c
+++ b/dlls/msvcrt/wcs.c
@@ -489,10 +489,7 @@
         {
             if( *p == 'h' || *p == 'l' || *p == 'L' )
             {
-                if( flags.IntegerLength == *p )  /* FIXME: this is wrong */
-                    flags.IntegerDouble++;
-                else
-                    flags.IntegerLength = *p;
+                flags.IntegerLength = *p;
                 p++;
             }
             else if( *p == 'I' )