mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
parenthising NULL
Original commit message from CVS: parenthising NULL
This commit is contained in:
parent
463b737f98
commit
c9c4535e5a
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* ext/sidplay/gstsiddec.cc:
|
||||
* gst/modplug/gstmodplug.cc:
|
||||
parenthese NULL because C++ seems angry about it
|
||||
|
||||
2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst-libs/gst/gst-i18n-plugin.h:
|
||||
|
|
|
@ -410,19 +410,19 @@ gst_siddec_loop (GstElement *element)
|
|||
}
|
||||
if (siddec->state == SID_STATE_LOAD_TUNE) {
|
||||
if (!siddec->tune->load (siddec->tune_buffer, siddec->tune_len)) {
|
||||
gst_element_error (siddec, LIBRARY, TOO_LAZY, NULL, NULL);
|
||||
gst_element_error (siddec, LIBRARY, TOO_LAZY, (NULL), (NULL));
|
||||
return;
|
||||
}
|
||||
|
||||
//update_metadata (siddec);
|
||||
|
||||
if (!siddec_negotiate (siddec)) {
|
||||
gst_element_error (siddec, CORE, NEGOTIATION, NULL, NULL);
|
||||
gst_element_error (siddec, CORE, NEGOTIATION, (NULL), (NULL));
|
||||
return;
|
||||
}
|
||||
|
||||
if (!sidEmuInitializeSong (*siddec->engine, *siddec->tune, siddec->tune_number)) {
|
||||
gst_element_error (siddec, LIBRARY, TOO_LAZY, NULL, NULL);
|
||||
gst_element_error (siddec, LIBRARY, TOO_LAZY, (NULL), (NULL));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue