From 0e7fed29ec24f5de1709a41f64998a90b51a1ec7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 24 Jan 2006 18:40:53 +0000 Subject: r13114: remove 'const' and make clear what the parameters are for metze (This used to be commit 317a3eefeef6b9da565a215ba152d829059c6f14) --- source4/lib/ldb/include/ldb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/ldb/include') diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index 770d23c638..9a637ff9d5 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -362,7 +362,7 @@ struct ldb_attrib_handler { #define LDB_SYNTAX_OBJECTCLASS "LDB_SYNTAX_OBJECTCLASS" /* sorting helpers */ -typedef int (*ldb_qsort_cmp_fn_t) (const void *, const void *, const void *); +typedef int (*ldb_qsort_cmp_fn_t) (void *v1, void *v2, void *opaque); /** OID for the paged results control. This control is included in the -- cgit