diff options
author | Logan Rathbone <poprocks@gmail.com> | 2021-02-11 15:12:35 -0500 |
---|---|---|
committer | Logan Rathbone <poprocks@gmail.com> | 2021-02-11 15:12:35 -0500 |
commit | 6e6dbce3eefbaadca62bd09b1375b91f75689852 (patch) | |
tree | 1174824f72898bcc00f9468e53b36219c7824c3c /src/util.c | |
parent | acac6061539e6f6e0b74f9a7fcedc54553aad500 (diff) | |
download | zenity-6e6dbce3eefbaadca62bd09b1375b91f75689852.tar.gz |
Make remaining C files build against gtk4
Next step: the app doesn't run because the .UI file contains
incompatibilities with gtk4 after conversion.
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -304,7 +304,8 @@ zenity_util_return_exit_code (ZenityExitCode value) { } void -zenity_util_exit_code_with_data (ZenityExitCode value, ZenityData *zen_data) { +zenity_util_exit_code_with_data (ZenityExitCode value, ZenityData *zen_data) +{ zen_data->exit_code = zenity_util_return_exit_code (value); } |