diff options
author | midipix <writeonce@midipix.org> | 2024-04-03 03:29:32 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-04-03 03:47:18 +0000 |
commit | fbe61707930e0e88e19f2ccba3e3c88149402efa (patch) | |
tree | 3ca8d1e4e584b82c7a29e15e5ef294101129dd77 | |
parent | ec95eb1a284a65fd5d9520e4bc43993f3bb053c2 (diff) | |
download | dalist-fbe61707930e0e88e19f2ccba3e3c88149402efa.tar.bz2 dalist-fbe61707930e0e88e19f2ccba3e3c88149402efa.tar.xz |
build system: cfgtest.sh: properly cast the probed interface's address.
-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 |