@@ -971,36 +971,36 @@ writeGPInfo(struct J9PortLibrary* portLibrary, void *writeGPInfoCrashData)
971
971
972
972
switch (infoKind ) {
973
973
case J9PORT_SIG_VALUE_16 :
974
- n = j9str_printf (PORTLIB , cursor , length , "%s=%04X%c" , name , * (U_16 * )value , c );
974
+ n = j9str_printf (PORTLIB , cursor , length , "%s=%04X%c" , name , * (U_16 * )value , c );
975
975
break ;
976
976
case J9PORT_SIG_VALUE_32 :
977
- n = j9str_printf (PORTLIB , cursor , length , "%s=%08.8x%c" , name , * (U_32 * )value , c );
977
+ n = j9str_printf (PORTLIB , cursor , length , "%s=%08.8x%c" , name , * (U_32 * )value , c );
978
978
break ;
979
979
case J9PORT_SIG_VALUE_64 :
980
- n = j9str_printf (PORTLIB , cursor , length ,"%s=%016.16llx%c" , name , * (U_64 * )value , c );
980
+ n = j9str_printf (PORTLIB , cursor , length , "%s=%016.16llx%c" , name , * (U_64 * )value , c );
981
981
break ;
982
982
case J9PORT_SIG_VALUE_128 :
983
983
{
984
984
const U_128 * const v = (U_128 * ) value ;
985
985
const U_64 h = v -> high64 ;
986
986
const U_64 l = v -> low64 ;
987
987
988
- n = j9str_printf (PORTLIB , cursor , length ,"%s=%016.16llx%016.16llx%c" , name , h , l , c );
988
+ n = j9str_printf (PORTLIB , cursor , length , "%s=%016.16llx%016.16llx%c" , name , h , l , c );
989
989
}
990
990
break ;
991
991
case J9PORT_SIG_VALUE_STRING :
992
- n = j9str_printf (PORTLIB , cursor , length , "%s=%s%c" , name , (char * )value , c );
992
+ n = j9str_printf (PORTLIB , cursor , length , "%s=%s%c" , name , (char * )value , c );
993
993
break ;
994
994
case J9PORT_SIG_VALUE_ADDRESS :
995
- n = j9str_printf (PORTLIB , cursor , length , "%s=%p%c" , name , * (void * * )value , c );
995
+ n = j9str_printf (PORTLIB , cursor , length , "%s=%p%c" , name , * (void * * )value , c );
996
996
break ;
997
997
case J9PORT_SIG_VALUE_FLOAT_64 :
998
998
/* make sure when casting to a float that we get least significant 32-bits. */
999
- n = j9str_printf (PORTLIB , cursor , length ,"%s %016.16llx (f: %f, d: %e)%c" , name , * (U_64 * )value , (float )LOW_U32_FROM_DBL_PTR (value ), * (double * )value , c );
999
+ n = j9str_printf (PORTLIB , cursor , length , "%s= %016.16llx (f: %f, d: %e)%c" , name , * (U_64 * )value , (float )LOW_U32_FROM_DBL_PTR (value ), * (double * )value , c );
1000
1000
break ;
1001
1001
case J9PORT_SIG_VALUE_UNDEFINED :
1002
1002
default :
1003
- n = j9str_printf (PORTLIB , cursor , length , "%s=<UNDEFINED>%c" , name , c );
1003
+ n = j9str_printf (PORTLIB , cursor , length , "%s=<UNDEFINED>%c" , name , c );
1004
1004
break ;
1005
1005
}
1006
1006
0 commit comments