diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2018-01-21 18:35:57 +0000 |
---|---|---|
committer | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2018-01-21 18:35:57 +0000 |
commit | 16aabfc1d2597d48af2453061e196c6a946cc2e0 (patch) | |
tree | 92ed55f4f9c19620e97784eefee04078bc7c168b /sysutils/k3b-kde4/files/patch-git_d5b1016 | |
parent | Fix the build on FreeBSD 12+ by using a current version of GCC which (diff) |
Fix one of the patches added in r459558.
PR: 224945
Reported by: antoine
Notes
Notes:
svn path=/head/; revision=459623
Diffstat (limited to 'sysutils/k3b-kde4/files/patch-git_d5b1016')
-rw-r--r-- | sysutils/k3b-kde4/files/patch-git_d5b1016 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysutils/k3b-kde4/files/patch-git_d5b1016 b/sysutils/k3b-kde4/files/patch-git_d5b1016 index f93d77cd62c7..6e8a96048939 100644 --- a/sysutils/k3b-kde4/files/patch-git_d5b1016 +++ b/sysutils/k3b-kde4/files/patch-git_d5b1016 @@ -74,12 +74,12 @@ index df9c576d8..d68f2003b 100644 0x52, 0x49, 0x46, 0x46, // 0 "RIFF" 0x00, 0x00, 0x00, 0x00, // 4 wavSize @@ -222,7 +222,7 @@ bool K3bExternalEncoder::writeWaveHeader() - qDebug() << "(K3bExternalEncoder) writing wave header"; + kDebug() << "(K3bExternalEncoder) writing wave header"; // write the RIFF thing - if( d->process->write( s_riffHeader, 4 ) != 4 ) { + if( d->process->write( (const char*) s_riffHeader, 4 ) != 4 ) { - qDebug() << "(K3bExternalEncoder) failed to write riff header."; + kDebug() << "(K3bExternalEncoder) failed to write riff header."; return false; } @@ -243,7 +243,7 @@ bool K3bExternalEncoder::writeWaveHeader() @@ -88,6 +88,6 @@ index df9c576d8..d68f2003b 100644 // write static part of the header - if( d->process->write( s_riffHeader + 8, 32 ) != 32 ) { + if( d->process->write( (const char*) s_riffHeader + 8, 32 ) != 32 ) { - qDebug() << "(K3bExternalEncoder) failed to write wave header."; + kDebug() << "(K3bExternalEncoder) failed to write wave header."; return false; } |