You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1006 B
29 lines
1006 B
From 7f0d007f3d15dec801acdaf3794f4e37db9c9875 Mon Sep 17 00:00:00 2001
|
|
From: James Chapman <jachapma@redhat.com>
|
|
Date: Wed, 9 Nov 2022 09:49:47 +0000
|
|
Subject: [PATCH 1/2] Issue 5505 - Fix compiler warning (#5506)
|
|
|
|
relates: https://github.com/389ds/389-ds-base/issues/5505
|
|
|
|
Reviewed by: @Firstyear (Thanks)
|
|
---
|
|
ldap/servers/plugins/retrocl/retrocl_trim.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/ldap/servers/plugins/retrocl/retrocl_trim.c b/ldap/servers/plugins/retrocl/retrocl_trim.c
|
|
index 37e5fbea7..d6b24c8bf 100644
|
|
--- a/ldap/servers/plugins/retrocl/retrocl_trim.c
|
|
+++ b/ldap/servers/plugins/retrocl/retrocl_trim.c
|
|
@@ -23,7 +23,7 @@ typedef struct _trim_status
|
|
int ts_s_trimming; /* non-zero if trimming in progress */
|
|
PRLock *ts_s_trim_mutex; /* protects ts_s_trimming */
|
|
} trim_status;
|
|
-static trim_status ts = {0L, 0L, 0, 0, NULL};
|
|
+static trim_status ts = {0};
|
|
|
|
/*
|
|
* All standard changeLogEntry attributes (initialized in get_cleattrs)
|
|
--
|
|
2.38.1
|
|
|