mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 04:00:37 +00:00
validate: Fix wrong sizeof usage
sizeof(int) is always <= sizeof(gpointer)
This commit is contained in:
parent
2d5ad1ac62
commit
f0511cc3a2
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ struct _GstValidateAction
|
|||
GstValidateExecuteActionReturn state; /* Actually ActionState */
|
||||
gboolean printed;
|
||||
|
||||
gpointer _gst_reserved[GST_PADDING_LARGE - sizeof (gint) - 2 - sizeof(gboolean)];
|
||||
gpointer _gst_reserved[GST_PADDING_LARGE - 4];
|
||||
};
|
||||
|
||||
void gst_validate_action_set_done (GstValidateAction *action);
|
||||
|
|
Loading…
Reference in a new issue