summaryrefslogtreecommitdiff
path: root/src/shared/install.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-04-12 19:19:48 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-04-13 20:24:39 -0400
commit7914d6bba47a21b98617d04c992a9075ff5af4c0 (patch)
treea67a19ee937f5d8691a393268e9743a6be01cc9d /src/shared/install.c
parent69aec65cf8da55e400cf0a4f213b0a48268ca19f (diff)
Remove a few NULLs
Just {} is used in a lot of places now, and there's nothing special abose those few.
Diffstat (limited to 'src/shared/install.c')
-rw-r--r--src/shared/install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/install.c b/src/shared/install.c
index b368b9f9ab..f9d223eee6 100644
--- a/src/shared/install.c
+++ b/src/shared/install.c
@@ -1735,7 +1735,7 @@ int unit_file_preset(
unsigned *n_changes) {
LookupPaths _cleanup_lookup_paths_free_ paths = {};
- InstallContext _cleanup_install_context_done_ plus = {}, minus = {NULL};
+ InstallContext _cleanup_install_context_done_ plus = {}, minus = {};
char **i;
char _cleanup_free_ *config_path = NULL;
Set _cleanup_set_free_free_ *remove_symlinks_to = NULL;