make newer gcc shut up

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1817 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2007-09-14 17:12:25 +00:00
parent ef83a19525
commit 9be0d70ea7
2 changed files with 2 additions and 3 deletions

View file

@ -68,5 +68,5 @@ void pa_object_unref(pa_object *o) {
int pa_object_check_type(const char *type_name) {
pa_assert(type_name);
return type_name == "pa_object" || strcmp(type_name, "pa_object") == 0;
return strcmp(type_name, "pa_object") == 0;
}

View file

@ -96,8 +96,7 @@ static inline pa_object* pa_object_cast(void *o) {
#define PA_DEFINE_CHECK_TYPE(c, parent) \
int c##_check_type(const char *type) { \
pa_assert(type); \
if (type == #c || \
strcmp(type, #c) == 0) \
if (strcmp(type, #c) == 0) \
return 1; \
return parent##_check_type(type); \
} \