diff options
Diffstat (limited to 'src/pulsecore/object.h')
-rw-r--r-- | src/pulsecore/object.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pulsecore/object.h b/src/pulsecore/object.h index 9c62f74a..562fd113 100644 --- a/src/pulsecore/object.h +++ b/src/pulsecore/object.h @@ -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); \ } \ |