Skip to content

Commit

Permalink
Align parameter names in declarations with definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
cgzones committed Apr 8, 2024
1 parent 4cf8c98 commit 327593e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DynamicScreen.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ typedef struct DynamicScreen_ {

Hashtable* DynamicScreens_new(void);

void DynamicScreens_delete(Hashtable* dynamics);
void DynamicScreens_delete(Hashtable* screens);

void DynamicScreen_done(DynamicScreen* this);

Expand Down
2 changes: 1 addition & 1 deletion Machine.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ bool Machine_isCPUonline(const Machine* this, unsigned int id);

void Machine_populateTablesFromSettings(Machine* this, Settings* settings, Table* processTable);

void Machine_setTablesPanel(Machine* host, Panel* panel);
void Machine_setTablesPanel(Machine* this, Panel* panel);

void Machine_scan(Machine* this);

Expand Down
4 changes: 2 additions & 2 deletions Process.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ typedef struct ProcessFieldData_ {
typedef int32_t ProcessField; /* see ReservedField list in RowField.h */

// Implemented in platform-specific code:
void Process_writeField(const Process* row, RichString* str, ProcessField field);
void Process_writeField(const Process* this, RichString* str, ProcessField field);
int Process_compare(const void* v1, const void* v2);
int Process_compareByParent(const Row* r1, const Row* v2);
int Process_compareByParent(const Row* r1, const Row* r2);
void Process_delete(Object* cast);
extern const ProcessFieldData Process_fields[LAST_PROCESSFIELD];
#define Process_pidDigits Row_pidDigits
Expand Down
2 changes: 1 addition & 1 deletion linux/GPU.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ in the source distribution for its full text.
#include "linux/LinuxProcessTable.h"


void GPU_readProcessData(LinuxProcessTable* lpl, LinuxProcess* lp, openat_arg_t procFd);
void GPU_readProcessData(LinuxProcessTable* lpt, LinuxProcess* lp, openat_arg_t procFd);

#endif /* HEADER_GPU */

0 comments on commit 327593e

Please sign in to comment.