Skip to content

Commit

Permalink
Add missing printf arguments
Browse files Browse the repository at this point in the history
Re: #1263, reported by Michael Rowley
  • Loading branch information
Bike committed Feb 7, 2022
1 parent ccff384 commit fceb682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/clasp/gctools/gcalloc.h
Expand Up @@ -1214,7 +1214,7 @@ struct StrongWeakAllocationPoint<WeakLinks> {
new (myAddress) container_type(init);
return gctools::tagged_pointer<container_type>(myAddress);
#elif defined(USE_MPS)
printf("%s:%d:%s Handle allocation in MPS\n");
printf("%s:%d:%s Handle allocation in MPS\n", __FILE__, __LINE__, __FUNCTION__);
mps_addr_t addr;
container_pointer myAddress(NULL);
printf("%s:%d:%s Handle weak object allocation properly - I added normal headers\n", __FILE__, __LINE__, __FUNCTION__ );
Expand Down

0 comments on commit fceb682

Please sign in to comment.