diff options
author | midipix <writeonce@midipix.org> | 2024-04-03 03:29:32 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-04-03 03:47:19 +0000 |
commit | 9d4ac9f645d1982f66696965e072cb5ed4a07694 (patch) | |
tree | 3821fdda06ca30732bec7155009af2df561b99eb /sofort/cfgtest/cfgtest.sh | |
parent | 86935734a65e6b1a5559d3b294d7f598fd9df2dd (diff) | |
download | ntux-9d4ac9f645d1982f66696965e072cb5ed4a07694.tar.bz2 ntux-9d4ac9f645d1982f66696965e072cb5ed4a07694.tar.xz |
build system: cfgtest.sh: properly cast the probed interface's address.
Diffstat (limited to 'sofort/cfgtest/cfgtest.sh')
-rw-r--r-- | sofort/cfgtest/cfgtest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh index 8e1db07..7bb27a0 100644 --- a/sofort/cfgtest/cfgtest.sh +++ b/sofort/cfgtest/cfgtest.sh @@ -423,7 +423,7 @@ cfgtest_interface_presence() # init cfgtest_prolog 'interface' "${1}" - cfgtest_code_snippet=$(printf 'void * addr = &%s;\n' "${1}") + cfgtest_code_snippet=$(printf 'void (*addr)() = (void (*)())&%s;\n' "${1}") cfgtest_common_init |