sim-atr: Print slot number when printing ATR

Change-Id: Iafb957f551de1239f63360854fabeecfeb62b530
diff --git a/sysmoOCTSIM/main.c b/sysmoOCTSIM/main.c
index ea07683..843652b 100644
--- a/sysmoOCTSIM/main.c
+++ b/sysmoOCTSIM/main.c
@@ -281,7 +281,7 @@
 
 	// read ATR (just do it until there is no traffic anymore)
 	// TODO the ATR should be parsed to read the right number of bytes
-	printf("ATR: ");
+	printf("(%d) ATR: ", slotnr);
 	uint8_t atr_byte;
 	while (usart_async_is_rx_not_empty(SIM_peripheral_descriptors[slotnr])) {
 		if (1 == io_read(&SIM_peripheral_descriptors[slotnr]->io, &atr_byte, 1)) {