Skip to content

Commit 907b1de

Browse files
committed
Reformat Perl_assert() definition
This changes the white space in preparation for the next commit
1 parent c502b73 commit 907b1de

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

perl.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5115,11 +5115,12 @@ Gid_t getegid (void);
51155115

51165116
#ifdef DEBUGGING
51175117
# define Perl_assert(what) \
5118-
((what) \
5119-
? ((void) 0) \
5120-
: (Perl_croak_nocontext("Assertion %s failed: file \"" __FILE__ \
5121-
"\", line %d", STRINGIFY(what), __LINE__), \
5122-
(void) 0))
5118+
((what) \
5119+
? ((void) 0) \
5120+
: (Perl_croak_nocontext("Assertion %s failed:" \
5121+
" file \"" __FILE__ "\", line %d", \
5122+
STRINGIFY(what), __LINE__), \
5123+
(void) 0))
51235124
#else
51245125
# define Perl_assert(what) ((void) 0)
51255126
#endif

0 commit comments

Comments
 (0)