Commit Diff
Commit:
1771f738ebf22a71a7c60542a96ae37a2eb6e055
Date:
Thu Jun 9 16:28:20 2022
UTC
Message:
fmt; fold long lines
--- player_flac.c
+++ player_flac.c
@@ -99,10 +99,11 @@ errcb(const FLAC__StreamDecoder *decoder, FLAC__Stream
}
static void
-errcb(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status,
- void *data)
+errcb(const FLAC__StreamDecoder *decoder,
+ FLAC__StreamDecoderErrorStatus status, void *data)
{
- log_warnx("flac error: %s", FLAC__StreamDecoderErrorStatusString[status]);
+ log_warnx("flac error: %s",
+ FLAC__StreamDecoderErrorStatusString[status]);
}
int
Omar Polo