Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
flac
Commits
9bb7a7e0
Commit
9bb7a7e0
authored
Jan 16, 2017
by
Erik de Castro Lopo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Yet more unsigned fixes
parent
f60a8ccc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
include/FLAC/metadata.h
include/FLAC/metadata.h
+1
-1
src/share/replaygain_analysis/replaygain_analysis.c
src/share/replaygain_analysis/replaygain_analysis.c
+2
-2
src/share/utf8/charset.c
src/share/utf8/charset.c
+1
-1
No files found.
include/FLAC/metadata.h
View file @
9bb7a7e0
...
...
@@ -2080,7 +2080,7 @@ FLAC_API FLAC__bool FLAC__metadata_object_cuesheet_is_legal(const FLAC__StreamMe
* \code object != NULL \endcode
* \code object->type == FLAC__METADATA_TYPE_CUESHEET \endcode
* \retval FLAC__uint32
* The u
int32_t int
eger representation of the CDDB/freedb ID
* The u
nsigned integer
eger representation of the CDDB/freedb ID
*/
FLAC_API
FLAC__uint32
FLAC__metadata_object_cuesheet_calculate_cddb_id
(
const
FLAC__StreamMetadata
*
object
);
...
...
src/share/replaygain_analysis/replaygain_analysis.c
View file @
9bb7a7e0
...
...
@@ -62,8 +62,8 @@
* flac_float_t l_samples [4096];
* flac_float_t r_samples [4096];
* size_t num_samples;
* uint32_t
int
num_songs;
* uint32_t
int
i;
* uint32_t num_songs;
* uint32_t i;
*
* InitGainAnalysis ( 44100 );
* for ( i = 1; i <= num_songs; i++ ) {
...
...
src/share/utf8/charset.c
View file @
9bb7a7e0
...
...
@@ -129,7 +129,7 @@ int utf8_mbtowc(int *pwc, const char *s, size_t n)
int
utf8_wctomb
(
char
*
s
,
int
wc1
)
{
uint32_t
int
wc
=
wc1
;
uint32_t
wc
=
wc1
;
if
(
!
s
)
return
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment