aboutsummaryrefslogtreecommitdiff
path: root/ch4/4-14_swap-macro.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ch4/4-14_swap-macro.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ch4/4-14_swap-macro.c b/ch4/4-14_swap-macro.c
index ac2f102..7e794d4 100644
--- a/ch4/4-14_swap-macro.c
+++ b/ch4/4-14_swap-macro.c
@@ -22,7 +22,6 @@
int main() {
int a = 3;
int b = 7;
-
printf("a is %d, b is %d\n", a, b);
swap(int, a, b);
printf("Now swap, and... a is %d and b is %d!\n", a, b);