Skip to content

Commit

Permalink
Add missing space after cast
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmacete committed Apr 8, 2024
1 parent 0cd7c21 commit bb482f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gum/backend-x86/gumspinlock-ia32-msc.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ gum_spinlock_release (GumSpinlock * spinlock)
gboolean
gum_spinlock_try_acquire (GumSpinlock * spinlock)
{
volatile guint32 is_held = *(guint32*)spinlock;
volatile guint32 is_held = *(guint32*) spinlock;
if (is_held == 1)
return FALSE;

Expand Down

0 comments on commit bb482f5

Please sign in to comment.