Commit 9f35da7896abd83227ba830f23b6b4a6a9e5c939
1 parent
a05bfa2f
Exists in
master
and in
1 other branch
Fixing bug from last commit.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/include/v3270.h
| @@ -60,7 +60,7 @@ | @@ -60,7 +60,7 @@ | ||
| 60 | 60 | ||
| 61 | static inline void v3270_autoptr_cleanup_GVariant(GVariant **variant) { | 61 | static inline void v3270_autoptr_cleanup_GVariant(GVariant **variant) { |
| 62 | if(*variant) { | 62 | if(*variant) { |
| 63 | - g_variant_unref(*variant) | 63 | + g_variant_unref(*variant); |
| 64 | } | 64 | } |
| 65 | } | 65 | } |
| 66 | 66 |