Make g_assertion_message_error take a const GError*

This was requested in bug 620265.
This commit is contained in:
Matthias Clasen 2010-06-06 16:42:06 -04:00
parent 87ee5f3641
commit a0c044b5c6
2 changed files with 2 additions and 2 deletions

View File

@ -1390,7 +1390,7 @@ g_assertion_message_error (const char *domain,
int line,
const char *func,
const char *expr,
GError *error,
const GError *error,
GQuark error_domain,
int error_code)
{

View File

@ -211,7 +211,7 @@ void g_assertion_message_error (const char *domain,
int line,
const char *func,
const char *expr,
GError *error,
const GError *error,
GQuark error_domain,
int error_code) G_GNUC_NORETURN;
void g_test_add_vtable (const char *testpath,