parenthising NULL

Original commit message from CVS:
parenthising NULL
This commit is contained in:
Thomas Vander Stichele 2004-01-19 10:00:01 +00:00
parent 463b737f98
commit c9c4535e5a
2 changed files with 9 additions and 3 deletions

View file

@ -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:

View file

@ -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;
}