From ba68d864230a77ebf4dc8f5b6dc2b3d757718060 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 10 Feb 2017 16:47:37 +0100 Subject: [PATCH] wldap32: Keep the error constants ordered. This simplifies verifying consistency with the corresponding error messages. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- include/winldap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/winldap.h b/include/winldap.h index 6d24575a497..2014e0696a4 100644 --- a/include/winldap.h +++ b/include/winldap.h @@ -92,8 +92,8 @@ typedef enum { LDAP_NO_MEMORY = 0x5a, LDAP_CONNECT_ERROR = 0x5b, LDAP_NOT_SUPPORTED = 0x5c, - LDAP_NO_RESULTS_RETURNED = 0x5e, LDAP_CONTROL_NOT_FOUND = 0x5d, + LDAP_NO_RESULTS_RETURNED = 0x5e, LDAP_MORE_RESULTS_TO_RETURN = 0x5f, LDAP_CLIENT_LOOP = 0x60,