Skip to content

Commit c07f83a

Browse files
committed
Reformat Perl_assert() definition
This removes an extraneous paren pair, and changes the white space in preparation for the next commit
1 parent 5ffa89d commit c07f83a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

perl.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5098,10 +5098,11 @@ Gid_t getegid (void);
50985098

50995099
#ifdef DEBUGGING
51005100
# define Perl_assert(what) \
5101-
((what) \
5102-
? ((void) 0) \
5103-
: (Perl_croak_nocontext("Assertion %s failed: file \"" __FILE__ \
5104-
"\", line %d", STRINGIFY(what), __LINE__)
5101+
((what) \
5102+
? ((void) 0) \
5103+
: Perl_croak_nocontext("Assertion %s failed:" \
5104+
" file \"" __FILE__ "\", line %d", \
5105+
STRINGIFY(what), __LINE__))
51055106
#else
51065107
# define Perl_assert(what) ((void) 0)
51075108
#endif

0 commit comments

Comments
 (0)