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 16, 2025
1 parent 6b80b3c commit 8002bac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcp/PCPDynamicScreen.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ static PCPDynamicColumn* PCPDynamicScreen_lookupMetric(PCPDynamicScreen* screen,
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 8002bac

Please sign in to comment.