diff options
| author | rbuj <[email protected]> | 2022-02-10 09:23:14 +0100 |
|---|---|---|
| committer | mbkma <[email protected]> | 2022-07-22 08:48:59 +0200 |
| commit | 141440bf89af9df9b64f77ac3a1c0fc63b768989 (patch) | |
| tree | ac9c684f96e61af9e8e36d24dbf90866df60ca49 /libcaja-extension/caja-property-page.c | |
| parent | 160d754f2228e74daea5735c9fb6655e082de906 (diff) | |
| download | caja-141440bf89af9df9b64f77ac3a1c0fc63b768989.tar.bz2 caja-141440bf89af9df9b64f77ac3a1c0fc63b768989.tar.xz | |
Fix build warning -Wmissing-field-initializers
Diffstat (limited to 'libcaja-extension/caja-property-page.c')
| -rw-r--r-- | libcaja-extension/caja-property-page.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcaja-extension/caja-property-page.c b/libcaja-extension/caja-property-page.c index cb5e1c74..f6b9882e 100644 --- a/libcaja-extension/caja-property-page.c +++ b/libcaja-extension/caja-property-page.c @@ -239,7 +239,8 @@ caja_property_page_get_type (void) NULL, sizeof (CajaPropertyPage), 0, - (GInstanceInitFunc)caja_property_page_instance_init + (GInstanceInitFunc)caja_property_page_instance_init, + NULL }; type = g_type_register_static |
