forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-sound/xmms2-scrobbler: fix gcc-7 build failure
Add missing '<stdio.h>' include for fprintf(). Package-Manager: Portage-2.3.5, Repoman-2.3.2
- Loading branch information
Sergei Trofimovich
committed
May 12, 2017
1 parent
51756b0
commit b6488c6
Showing
2 changed files
with
10 additions
and
1 deletion.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
media-sound/xmms2-scrobbler/files/xmms2-scrobbler-0.4.0-gcc-7.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
diff --git a/src/submission.c b/src/submission.c | ||
index 422db0a..326b003 100644 | ||
--- a/src/submission.c | ||
+++ b/src/submission.c | ||
@@ -24,2 +24,3 @@ | ||
#include <stdlib.h> | ||
+#include <stdio.h> | ||
#include "submission.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters