soc/intel/xeon_sp/spr: Fix format specifier for __LINE__ (%d)

Change-Id: I1384a02fa2931002ddd629acef0a4368435cfeb5
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75233
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
diff --git a/src/soc/intel/xeon_sp/spr/numa.c b/src/soc/intel/xeon_sp/spr/numa.c
index 6aba7cca..92ed0bf 100644
--- a/src/soc/intel/xeon_sp/spr/numa.c
+++ b/src/soc/intel/xeon_sp/spr/numa.c
@@ -44,7 +44,7 @@
 	pds.num_pds = num_cxlnodes + num_sockets;
 	pds.pds = xmalloc(sizeof(struct proximity_domain) * pds.num_pds);
 	if (!pds.pds)
-		die("%s %s out of memory.", __FILE__, __LINE__);
+		die("%s %d out of memory.", __FILE__, __LINE__);
 
 	memset(pds.pds, 0, sizeof(struct proximity_domain) * pds.num_pds);
 
@@ -56,7 +56,7 @@
 		pds.pds[i].socket_bitmap = 1 << i;
 		pds.pds[i].distances = malloc(sizeof(uint8_t) * pds.num_pds);
 		if (!pds.pds[i].distances)
-			die("%s %s out of memory.", __FILE__, __LINE__);
+			die("%s %d out of memory.", __FILE__, __LINE__);
 		/* hard code the distances for now, till we know how to calculate them. */
 		for (j = 0; j < pds.num_pds; j++) {
 			if (j == i)
@@ -84,7 +84,7 @@
 			pds.pds[i].device_handle = PCI_BDF(dev);
 			pds.pds[i].distances = malloc(sizeof(uint8_t) * pds.num_pds);
 			if (!pds.pds[i].distances)
-				die("%s %s out of memory.", __FILE__, __LINE__);
+				die("%s %d out of memory.", __FILE__, __LINE__);
 			/* hard code the distances until we know how to calculate them */
 			for (j = 0; j < pds.num_pds; j++) {
 				if (j == i)