summary refs log tree commit diff
path: root/src/bltin/printf.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/bltin/printf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bltin/printf.c b/src/bltin/printf.c
index 5f9e81c..e0ef912 100644
--- a/src/bltin/printf.c
+++ b/src/bltin/printf.c
@@ -191,9 +191,12 @@ pc:
 				PF(f, p);
 				break;
 			}
+			case 'a':
+			case 'A':
 			case 'e':
 			case 'E':
 			case 'f':
+			case 'F':
 			case 'g':
 			case 'G': {
 				double p = getdouble();