fixed a bunch of warnings
[libfirm] / ir / be / test / fehler65.c
index f5d7d4b..36ae7f1 100644 (file)
@@ -2,7 +2,7 @@ int randn = -1271796327;
 double value = 4294967295;
 
 int main(void) {
-       float res = (double) (randn % (unsigned int) value);
+       double res = (double) (randn % (unsigned int) value);
        printf("Res: %f\n", res);
        return 0;
 }