We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47e01a7 commit 051f664Copy full SHA for 051f664
src/logo/image/image.c
@@ -735,7 +735,7 @@ static bool printImageIfExistsSlowPath(FFinstance* instance, FFLogoType type)
735
case FF_LOGO_IMAGE_RESULT_RUN_ERROR:
736
fputs("Logo: Failed to load / convert the image source\n", stderr);
737
return false;
738
- default
+ default:
739
return true;
740
}
741
@@ -770,7 +770,7 @@ bool ffLogoPrintImageIfExists(FFinstance* instance, FFLogoType type)
770
#endif
771
772
#if defined(FF_HAVE_IMAGEMAGICK7) || defined(FF_HAVE_IMAGEMAGICK6)
773
- return printImageIfExistsSlowPath()
+ return printImageIfExistsSlowPath(instance, type);
774
#else
775
fputs("Logo: Fastfetch was built without ImageMagick support\n", stderr);
776
0 commit comments