From fe66abd6ff3387a94c5e5d3f5f1f10d452f6d603 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 17 Aug 2011 14:10:15 +0200 Subject: Adapt del_sid_from_array to Samba coding style Autobuild-User: Volker Lendecke Autobuild-Date: Wed Aug 17 16:46:24 CEST 2011 on sn-devel-104 --- libcli/security/util_sid.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libcli/security') diff --git a/libcli/security/util_sid.c b/libcli/security/util_sid.c index a86d4cbddb..84ac0f1dbc 100644 --- a/libcli/security/util_sid.c +++ b/libcli/security/util_sid.c @@ -337,8 +337,9 @@ void del_sid_from_array(const struct dom_sid *sid, struct dom_sid **sids, /* This loop will copy the remainder of the array if i < num of sids in the array */ - for ( ; i<*num; i++ ) + for ( ; i<*num; i++ ) { sid_copy( &sid_list[i], &sid_list[i+1] ); + } return; } -- cgit