From 61bae4c9d27f23b3ebda461a922ae76e63e0a9c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Tue, 27 Oct 2020 21:26:28 +0100 Subject: Unify function argument names Name first argument of ProcessList_goThroughEntries consistently super Name first argument of ProcessList_new consistently userTable --- ProcessList.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ProcessList.h') diff --git a/ProcessList.h b/ProcessList.h index 4c09e4ce..6b075fa7 100644 --- a/ProcessList.h +++ b/ProcessList.h @@ -72,9 +72,9 @@ typedef struct ProcessList_ { } ProcessList; -ProcessList* ProcessList_new(UsersTable* ut, Hashtable* pidMatchList, uid_t userId); +ProcessList* ProcessList_new(UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId); void ProcessList_delete(ProcessList* pl); -void ProcessList_goThroughEntries(ProcessList* pl, bool pauseProcessUpdate); +void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate); ProcessList* ProcessList_init(ProcessList* this, const ObjectClass* klass, UsersTable* usersTable, Hashtable* pidMatchList, uid_t userId); -- cgit v1.2.3