Skip to content

Commit

Permalink
audio/sayonara: repair build
Browse files Browse the repository at this point in the history
My own not-quite-13.2 systems build sayonara fine, but the cluster
has been sending pkg-fallout messages. Make some types more obvious
for the compiler.
  • Loading branch information
Adriaan de Groot authored and Adriaan de Groot committed Apr 1, 2024
1 parent e7846fb commit 2de2a79
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions audio/sayonara/Makefile
@@ -1,6 +1,7 @@
PORTNAME= sayonara
DISTVERSION= 1.9.0
DISTVERSIONSUFFIX= -stable1
PORTREVISION= 1
CATEGORIES= audio

MAINTAINER= adridg@FreeBSD.org
Expand Down
@@ -0,0 +1,11 @@
--- src/Utils/Tagging/MP4/PopularimeterFrame.cpp.orig 2024-04-01 19:55:44 UTC
+++ src/Utils/Tagging/MP4/PopularimeterFrame.cpp
@@ -28,7 +28,7 @@ namespace
{
[[nodiscard]] int fourBytesToInteger(const int32_t fourBytes)
{
- const auto chars = std::array {
+ const auto chars = std::array<int32_t,3> {
(fourBytes >> 16) & 0xFF,
(fourBytes >> 8) & 0xFF,
(fourBytes & 0xFF)

0 comments on commit 2de2a79

Please sign in to comment.