diff options
author | Josep Torra Valles <josep@fluendo.com> | 2006-10-17 11:04:14 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-10-17 11:04:14 +0000 |
commit | 53af0e3bafbd84f80e14d2b2f8dfa6b425afe2e5 (patch) | |
tree | 32e36f3b2738cf2b649fadb471aade7b5db2b1f9 /gst/nsf/mmc5_snd.c | |
parent | 84d6cf69a2f24075b06cfc6edbe18656b6d28499 (diff) | |
download | gst-plugins-bad-53af0e3bafbd84f80e14d2b2f8dfa6b425afe2e5.tar.gz gst-plugins-bad-53af0e3bafbd84f80e14d2b2f8dfa6b425afe2e5.tar.bz2 gst-plugins-bad-53af0e3bafbd84f80e14d2b2f8dfa6b425afe2e5.zip |
gst/nsf/: Fix some things the Forte compiler warns about (#362626).
Original commit message from CVS:
Patch by: Josep Torra Valles <josep at fluendo com>
* gst/nsf/fds_snd.c:
* gst/nsf/mmc5_snd.c:
* gst/nsf/nsf.c:
* gst/nsf/vrc7_snd.c:
* gst/nsf/vrcvisnd.c:
Fix some things the Forte compiler warns about (#362626).
Diffstat (limited to 'gst/nsf/mmc5_snd.c')
-rw-r--r-- | gst/nsf/mmc5_snd.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/gst/nsf/mmc5_snd.c b/gst/nsf/mmc5_snd.c index 7c39af44..49984432 100644 --- a/gst/nsf/mmc5_snd.c +++ b/gst/nsf/mmc5_snd.c @@ -310,13 +310,13 @@ mmc5_shutdown (void) static apu_memread mmc5_memread[] = { {0x5205, 0x5206, mmc5_read}, - {-1, -1, NULL} + {(uint32) - 1, (uint32) - 1, NULL} }; static apu_memwrite mmc5_memwrite[] = { {0x5000, 0x5015, mmc5_write}, {0x5205, 0x5206, mmc5_write}, - {-1, -1, NULL} + {(uint32) - 1, (uint32) - 1, NULL} }; apuext_t mmc5_ext = { @@ -330,6 +330,15 @@ apuext_t mmc5_ext = { /* ** $Log$ +** Revision 1.2 2006/10/17 11:04:14 tpm +** Patch by: Josep Torra Valles <josep at fluendo com> +** * gst/nsf/fds_snd.c: +** * gst/nsf/mmc5_snd.c: +** * gst/nsf/nsf.c: +** * gst/nsf/vrc7_snd.c: +** * gst/nsf/vrcvisnd.c: +** Fix some things the Forte compiler warns about (#362626). +** ** Revision 1.1 2006/07/13 15:07:28 wtay ** Based on patches by: Johan Dahlin <johan at gnome dot org> ** Ronald Bultje <rbultje at ronald dot bitfreak dot net> |