Skip to content

Commit

Permalink
Remove space between function name and open parens
Browse files Browse the repository at this point in the history
  • Loading branch information
niner committed Nov 27, 2011
1 parent 22c17f4 commit 421284d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pmc/structview.pmc
Expand Up @@ -101,7 +101,7 @@ static void index_out_of_bounds(PARROT_INTERP, INTVAL i)
i = Parrot_key_integer((interp), (k)); \
(k) = orig_k; \
if (i < 0 || n_elts <= (size_t)i) \
index_out_of_bounds ((interp), i); \
index_out_of_bounds((interp), i); \
base_ptr = VTABLE_get_pointer((interp), ptr_pmc); \
ptr = ((char *)base_ptr) + elts[i].byte_offset; \
/* guard against null pointer dereference */ \
Expand Down

0 comments on commit 421284d

Please sign in to comment.