@@ -57,12 +57,12 @@ macro_rules! ijon_inc {
57
57
macro_rules! ijon_max {
58
58
( $( $x: expr) ,+ $( , ) ?) => { {
59
59
unsafe {
60
- static mut loc: u32 = 0 ;
61
- if loc == 0 {
62
- let cfile = std:: ffi:: CString :: new( file!( ) ) . unwrap( ) ;
63
- loc = afl:: ijon_hashstr( line!( ) , cfile. as_ptr( ) ) ;
64
- }
65
- afl:: ijon_max_variadic( _IJON_LOC_CACHE, $( $x) ,+, 0u64 )
60
+ static mut loc: u32 = 0 ;
61
+ if loc == 0 {
62
+ let cfile = std:: ffi:: CString :: new( file!( ) ) . unwrap( ) ;
63
+ loc = afl:: ijon_hashstr( line!( ) , cfile. as_ptr( ) ) ;
64
+ }
65
+ afl:: ijon_max_variadic( _IJON_LOC_CACHE, $( $x) ,+, 0u64 )
66
66
} ;
67
67
} } ;
68
68
}
@@ -71,12 +71,12 @@ macro_rules! ijon_max {
71
71
macro_rules! ijon_min {
72
72
( $( $x: expr) ,+ $( , ) ?) => { {
73
73
unsafe {
74
- static mut loc: u32 = 0 ;
75
- if loc == 0 {
76
- let cfile = std:: ffi:: CString :: new( file!( ) ) . unwrap( ) ;
77
- loc = afl:: ijon_hashstr( line!( ) , cfile. as_ptr( ) ) ;
78
- }
79
- afl:: ijon_min_variadic( loc, $( $x) ,+, 0u64 )
74
+ static mut loc: u32 = 0 ;
75
+ if loc == 0 {
76
+ let cfile = std:: ffi:: CString :: new( file!( ) ) . unwrap( ) ;
77
+ loc = afl:: ijon_hashstr( line!( ) , cfile. as_ptr( ) ) ;
78
+ }
79
+ afl:: ijon_min_variadic( loc, $( $x) ,+, 0u64 )
80
80
} ;
81
81
} } ;
82
82
}
0 commit comments