summaryrefslogtreecommitdiffstats
path: root/ldap/servers/slapd/backend.c
diff options
context:
space:
mode:
authorRich Megginson <rmeggins@redhat.com>2009-07-07 13:22:45 -0600
committerRich Megginson <rmeggins@redhat.com>2009-07-07 13:44:50 -0600
commit386ba57d421ee2d59a267d52d63bd88cbf20c435 (patch)
tree88db2ad09ae1f202a23ce45e6a430506be534ccd /ldap/servers/slapd/backend.c
parent209521323f731daad54682fd98715f7b22c88c78 (diff)
downloadds-smallcleanup.tar.gz
ds-smallcleanup.tar.xz
ds-smallcleanup.zip
Clean up compiler warningssmallcleanupbasecleanup
This cleans up all of the compiler warnings produced with -Wall on RHEL/Fedora platforms. The warnings about the %lld and %llu formats are still produced and cannot be helped. Reviewed by: nkinder (Thanks!)
Diffstat (limited to 'ldap/servers/slapd/backend.c')
-rw-r--r--ldap/servers/slapd/backend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldap/servers/slapd/backend.c b/ldap/servers/slapd/backend.c
index 1bded05e..c4c399f9 100644
--- a/ldap/servers/slapd/backend.c
+++ b/ldap/servers/slapd/backend.c
@@ -502,7 +502,7 @@ slapi_be_setentrypoint(Slapi_Backend *be, int entrypoint, void *ret_fnptr, Slapi
be->be_entry_release=(IFP) ret_fnptr;
break;
case SLAPI_PLUGIN_DB_SEARCH_RESULTS_RELEASE_FN:
- be->be_search_results_release=(IFP) ret_fnptr;
+ be->be_search_results_release=(VFPP) ret_fnptr;
break;
case SLAPI_PLUGIN_DB_SIZE_FN:
be->be_dbsize=(IFP) ret_fnptr;