summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/compress.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/puzzles/compress.c')
-rw-r--r--apps/plugins/puzzles/compress.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/puzzles/compress.c b/apps/plugins/puzzles/compress.c
index 78b2aa4d4a..d127a9af17 100644
--- a/apps/plugins/puzzles/compress.c
+++ b/apps/plugins/puzzles/compress.c
@@ -72,7 +72,7 @@ int main()
72 int inlen = strlen(help_text) + 1, outlen; 72 int inlen = strlen(help_text) + 1, outlen;
73 int minsz, minlev; 73 int minsz, minlev;
74 74
75 printf("/* auto-generated on " __DATE__ " by genhelp.sh */\n"); 75 printf("/* auto-generated by genhelp.sh */\n");
76 printf("/* help text is compressed using LZ4; see compress.c for details */\n"); 76 printf("/* help text is compressed using LZ4; see compress.c for details */\n");
77 printf("/* DO NOT EDIT! */\n\n"); 77 printf("/* DO NOT EDIT! */\n\n");
78 78
@@ -158,6 +158,7 @@ int main()
158 printf("};\n\n"); 158 printf("};\n\n");
159 printf("const unsigned short help_text_len = %d;\n", help_text_len); 159 printf("const unsigned short help_text_len = %d;\n", help_text_len);
160 printf("const unsigned short help_text_words = %d;\n", word_idx); 160 printf("const unsigned short help_text_words = %d;\n", word_idx);
161 printf("const bool help_valid = true;\n");
161 162
162 return 0; 163 return 0;
163} 164}