]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/boot/efi/ticks.c
tree-wide: "<n>bit" → "<n>-bit"
[thirdparty/systemd.git] / src / boot / efi / ticks.c
index f902b83a99b8aac3a7b903932c8a21a51d749c2c..852d090e0c5fff0534f668b3d8455801f80edb81 100644 (file)
@@ -91,7 +91,7 @@ static uint64_t ticks_freq(void) {
         uint64_t ticks_end = ticks_read_arch();
 
         if (ticks_end < ticks_start) /* Check for an overflow (which is not that unlikely, given on some
-                                      * archs the value is 32bit) */
+                                      * archs the value is 32-bit) */
                 return 0;
 
         cache = (ticks_end - ticks_start) * 1000UL;