Tanu Kaskinen pushed to branch master at PulseAudio / pulseaudio

Commits:
b9d13aa9 by Yclept Nemo at 2018-08-12T12:16:13Z
object: Fix pa_object_new macro (missing close paren)

- - - - -


1 changed file:

- src/pulsecore/object.h


Changes:

=====================================
src/pulsecore/object.h
=====================================
--- a/src/pulsecore/object.h
+++ b/src/pulsecore/object.h
@@ -37,7 +37,7 @@ struct pa_object {
 };
 
 pa_object *pa_object_new_internal(size_t size, const char *type_id, bool 
(*check_type)(const char *type_id));
-#define pa_object_new(type) ((type*) pa_object_new_internal(sizeof(type), 
type##_type_id, type##_check_type)
+#define pa_object_new(type) ((type*) pa_object_new_internal(sizeof(type), 
type##_type_id, type##_check_type))
 
 #define pa_object_free ((void (*) (pa_object* _obj)) pa_xfree)
 



View it on GitLab: 
https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/b9d13aa91eb1f39ce4a199f67239e490a059d460

-- 
View it on GitLab: 
https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/b9d13aa91eb1f39ce4a199f67239e490a059d460
You're receiving this email because of your account on gitlab.freedesktop.org.
_______________________________________________
pulseaudio-commits mailing list
pulseaudio-commits@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/pulseaudio-commits

Reply via email to