Commit Diff
Commit:
1771f738ebf22a71a7c60542a96ae37a2eb6e055
From:
Omar Polo <op@omarpolo.com>
Date:
Thu Jun 9 16:28:20 2022 UTC
Message:
fmt; fold long lines
commit - 738d9f00ebea340b28d1f859f5f39c1ad6fb0fd0
commit + 1771f738ebf22a71a7c60542a96ae37a2eb6e055
blob - 20189ddbffcff6d193cb47674a7f34059875b194
blob + 50d7e1e1ddd323071dbbed7afc7eddbd3df1b76b
--- 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