From 655fa05951f9a3961299195c8b1bc258f9b7a41d Mon Sep 17 00:00:00 2001 From: Albert Hsieh Date: Sun, 13 Mar 2016 00:33:10 +0800 Subject: [PATCH] Fix small mistake in README.md If I didn't misunderstanding I think there should be `f();` not `g();` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14ef93b..59d1904 100644 --- a/README.md +++ b/README.md @@ -199,7 +199,7 @@ Flags are passed to the compiler proper via -Wfflag, e.g. -Wf--no-mov-id If you need to do this, wrap the function internally: int g(void) { return getchar(); } - int (*f)(void)=g; g(); + int (*f)(void)=g; f(); # MOV violations