aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-02-18 16:40:21 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-02-18 16:40:21 +0100
commit3e9643120fd08ce9c455b63a135ee43a323cd948 (patch)
tree3d0f1b15af08290f840e09c35211446e735094ab
parent029e148c67555d431c9f82d6485bb0f3d970810f (diff)
Use U+00A0 NO BREAK SPACE between numbers and units
-rw-r--r--src/ahoy/emulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ahoy/emulator.c b/src/ahoy/emulator.c
index c66776f..8ecdc1b 100644
--- a/src/ahoy/emulator.c
+++ b/src/ahoy/emulator.c
@@ -47,7 +47,7 @@ emuinit(struct u8view prog, const char *fn)
filename = fn;
if (prog.len > MEM_FREE) {
- diex("%s: binary of size %.1f KiB exceeds %d B maximum", filename,
+ diex("%s: binary of size %.1f KiB exceeds %d B maximum", filename,
(double)prog.len / 1024, MEM_FREE);
}