Skip to content

Commit

Permalink
Correct indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
kingmidas-hack committed Jan 22, 2025
1 parent 6b80b3c commit 16a59e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pcp/PCPDynamicScreen.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ static PCPDynamicColumn* PCPDynamicScreen_lookupMetric(PCPDynamicScreen* screen,
PCPDynamicColumn* column = NULL;
if ((strlen(name) + strlen(screen->super.name) + 1) >= sizeof(column->super.name)) /* colon */
return NULL;
char* metricName = NULL;
xAsprintf(&metricName, "htop.screen.%s.%s", screen->super.name, name);

char* metricName = NULL;
xAsprintf(&metricName, "htop.screen.%s.%s", screen->super.name, name);

for (size_t i = 0; i < screen->totalColumns; i++) {
column = screen->columns[i];
Expand Down

0 comments on commit 16a59e6

Please sign in to comment.