From cf489a60834639ae2483a7bdfb369790cdec39fe Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 11 May 2016 10:06:12 -0600 Subject: [PATCH] Fix a typo in the last commit --- tools/mkconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkconfig.c b/tools/mkconfig.c index 15a2a34304c..28b0c0351f0 100644 --- a/tools/mkconfig.c +++ b/tools/mkconfig.c @@ -99,7 +99,7 @@ int main(int argc, char **argv, char **envp) printf("#ifndef __INCLUDE_NUTTX_CONFIG_H\n"); printf("#define __INCLUDE_NUTTX_CONFIG_H\n\n"); generate_definitions(stream); - printf("/n#endif /* __INCLUDE_NUTTX_CONFIG_H */\n"); + printf("\n#endif /* __INCLUDE_NUTTX_CONFIG_H */\n"); fclose(stream); /* Exit (without bothering to clean up allocations) */