diff options
author | rbuj <[email protected]> | 2021-10-28 11:29:20 +0200 |
---|---|---|
committer | mbkma <[email protected]> | 2022-07-22 08:53:47 +0200 |
commit | 95e75ae2253961b61201ffe3be353771e4d21db7 (patch) | |
tree | afde984b64d6514a758975f8b6f65e52b46cc540 /src | |
parent | 5a89697d32317b45c70a15ce0e6c67ebced75251 (diff) | |
download | mate-terminal-95e75ae2253961b61201ffe3be353771e4d21db7.tar.bz2 mate-terminal-95e75ae2253961b61201ffe3be353771e4d21db7.tar.xz |
terminal: fix build warning about missing field initializer
Diffstat (limited to 'src')
-rw-r--r-- | src/terminal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/terminal.c b/src/terminal.c index b4efd39..7909fdf 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -243,6 +243,7 @@ bus_acquired_cb (GDBusConnection *connection, method_call_cb, NULL, NULL, + { 0 } }; OwnData *data = (OwnData *) user_data; |