Skip to content

Commit 051f664

Browse files
committed
Image: fix build
1 parent 47e01a7 commit 051f664

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/logo/image/image.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ static bool printImageIfExistsSlowPath(FFinstance* instance, FFLogoType type)
735735
case FF_LOGO_IMAGE_RESULT_RUN_ERROR:
736736
fputs("Logo: Failed to load / convert the image source\n", stderr);
737737
return false;
738-
default
738+
default:
739739
return true;
740740
}
741741
}
@@ -770,7 +770,7 @@ bool ffLogoPrintImageIfExists(FFinstance* instance, FFLogoType type)
770770
#endif
771771

772772
#if defined(FF_HAVE_IMAGEMAGICK7) || defined(FF_HAVE_IMAGEMAGICK6)
773-
return printImageIfExistsSlowPath()
773+
return printImageIfExistsSlowPath(instance, type);
774774
#else
775775
fputs("Logo: Fastfetch was built without ImageMagick support\n", stderr);
776776
return false;

0 commit comments

Comments
 (0)