Revert "Use exponential notation for big multiples of 10"
authorAntonio Ospite <ospite@studenti.unina.it>
Thu, 25 Jul 2013 16:10:12 +0000 (18:10 +0200)
committerAntonio Ospite <ospite@studenti.unina.it>
Thu, 25 Jul 2013 16:10:12 +0000 (18:10 +0200)
This reverts commit a4e782b24f912e26396a94ceed35856da5afc1a1.

Numbers expressed in scientific notation are of type "double", an
integer type is enough here.

fps-limit.c

index a5d00a7..3ed784f 100644 (file)
@@ -34,7 +34,7 @@
 
 #define FPS 60
 
-#define NSEC_PER_SEC 1e9
+#define NSEC_PER_SEC 1000000000
 
 #define timespecsub(a, b, result)                                \
        do {                                                     \
@@ -42,7 +42,7 @@
                (result)->tv_nsec = (a)->tv_nsec - (b)->tv_nsec; \
                if ((result)->tv_nsec < 0) {                     \
                        --(result)->tv_sec;                      \
-                       (result)->tv_nsec += 1e9;                \
+                       (result)->tv_nsec += 1000000000;         \
                }                                                \
        } while(0)