amd_imc.c: Fix unusual typo in log message

Replace a `)` with a `.` for consistency with other log messages.

Change-Id: I977990237821f6aec8f127bc3994a1f3f3a0a350
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Original-Reviewed-on: https://review.coreboot.org/c/flashrom/+/71184
Original-Reviewed-by: Felix Singer <felixsinger@posteo.net>
Original-Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Original-Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/71735
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
diff --git a/amd_imc.c b/amd_imc.c
index 8b0bcf2..da0c605 100644
--- a/amd_imc.c
+++ b/amd_imc.c
@@ -123,7 +123,7 @@
 	int ret = imc_send_cmd(dev, 0xb5);
 
 	if (ret != 0)
-		msg_pinfo("Resuming IMC failed)\n");
+		msg_pinfo("Resuming IMC failed.\n");
 	else
 		msg_pdbg2("IMC resumed.\n");
 	return ret;