Skip to content

Commit 2053347

Browse files
ci: fix compact build error
1 parent f0e2e4e commit 2053347

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

applications/services/cli/cli_commands.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,7 @@ void cli_command_neofetch(Cli* cli, FuriString* args, void* context) {
123123
// Print ASCII art with info
124124
const size_t info_height = 16;
125125
for(size_t i = 0; i < MAX(logo_height, info_height); i++) {
126-
printf(
127-
NEOFETCH_COLOR "%*.*s",
128-
-logo_width,
129-
logo_width,
130-
(i < logo_height) ? neofetch_logo[i] : "");
126+
printf(NEOFETCH_COLOR "%-*s", logo_width, (i < logo_height) ? neofetch_logo[i] : "");
131127
switch(i) {
132128
case 0: // you@<hostname>
133129
printf("you" ANSI_RESET "@" NEOFETCH_COLOR "%s", furi_hal_version_get_name_ptr());

0 commit comments

Comments
 (0)