projects
/
wine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44fa76a
)
fix mismatched types (-Wincompatible-pointer-types)
author
Michael Gilbert
<mgilbert@debian.org>
Sat, 24 Sep 2022 17:29:03 +0000
(18:29 +0100)
committer
Michael Gilbert
<mgilbert@debian.org>
Sat, 24 Sep 2022 17:29:03 +0000
(18:29 +0100)
Gbp-Pq: Topic warnings
Gbp-Pq: Name incompatible-types.patch
dlls/winegstreamer/media_source.c
patch
|
blob
|
history
diff --git
a/dlls/winegstreamer/media_source.c
b/dlls/winegstreamer/media_source.c
index 6ecd345cb735849a6aebd8b597329f47365703d8..9249b45ebf692d9ef562c179cc558a726287ac24 100644
(file)
--- a/
dlls/winegstreamer/media_source.c
+++ b/
dlls/winegstreamer/media_source.c
@@
-614,7
+614,7
@@
static DWORD CALLBACK read_thread(void *arg)
struct media_source *source = arg;
IMFByteStream *byte_stream = source->byte_stream;
size_t buffer_size = 4096;
-
uint64_t
file_size;
+
QWORD
file_size;
void *data;
if (!(data = malloc(buffer_size)))
@@
-1395,7
+1395,7
@@
static HRESULT media_source_constructor(IMFByteStream *bytestream, struct media_
UINT64 total_pres_time = 0;
struct wg_parser *parser;
DWORD bytestream_caps;
-
uint64_t
file_size;
+
QWORD
file_size;
unsigned int i;
HRESULT hr;