mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
main: Fix compiler error
Older versions of GCC throw a "initializer element is not contstant" error. Fix this. Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
This commit is contained in:
parent
395c072a75
commit
4e88360eb1
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
|||
|
||||
struct vector_args next_stage;
|
||||
|
||||
const char *const version_tag = "##m1n1_ver##" BUILD_TAG;
|
||||
const char version_tag[] = "##m1n1_ver##" BUILD_TAG;
|
||||
const char *const m1n1_version = version_tag + 12;
|
||||
|
||||
void print_info(void)
|
||||
|
|
Loading…
Reference in a new issue