summaryrefslogtreecommitdiffstats
path: root/5/10.c
diff options
context:
space:
mode:
authorSadeep Madurange <smadurange@users.noreply.github.com>2022-01-12 20:44:29 +0800
committerSadeep Madurange <smadurange@users.noreply.github.com>2022-01-12 20:44:29 +0800
commit8f93e6ab37937300f47f424de89c43d988add9ae (patch)
tree5ab9088b1a9489ce537e23176ad3ed3b55ceda98 /5/10.c
parentb781dad9368e5d57629e8412c43e36e8aebe4280 (diff)
downloadk&r-exercises-8f93e6ab37937300f47f424de89c43d988add9ae.tar.gz
5.10
Diffstat (limited to '5/10.c')
-rw-r--r--5/10.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/5/10.c b/5/10.c
index 71c78e8..0b9456d 100644
--- a/5/10.c
+++ b/5/10.c
@@ -48,7 +48,7 @@ int main(int argc, char *argv[]) {
val[++i] = op1 % op2;
break;
default:
- printf("error: unkknown op\n");
+ printf("error: unknown op\n");
return 1;
}
}