chiark / gitweb /
tree-wide: minor formatting inconsistency cleanups
[elogind.git] / src / basic / parse-util.c
index 29012b837638b059dc8bb533a9da0c732b612382..63732634af8ef45d0199204c4f013b02728e8689 100644 (file)
@@ -507,7 +507,7 @@ int parse_fractional_part_u(const char **p, size_t digits, unsigned *res) {
         s = *p;
 
         /* accept any number of digits, strtoull is limted to 19 */
-        for(i=0; i < digits; i++,s++) {
+        for (i=0; i < digits; i++,s++) {
                 if (*s < '0' || *s > '9') {
                         if (i == 0)
                                 return -EINVAL;