From 4107f2c44c592c013c6811c916d76ceeeb8d15c0 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Mon, 18 Jun 2018 04:12:58 +0000 Subject: [PATCH] Fix 32-bit build after 335307 This was correct in the final version on Phabricator, but somehow I screwed up applying the patch locally. Reported by: linimon Pointy-hat-to: asomers MFC after: 2 weeks X-MFC-With: 335307 --- tests/sys/audit/inter-process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sys/audit/inter-process.c b/tests/sys/audit/inter-process.c index 9a3946c5d6fe..7973c097ba9d 100644 --- a/tests/sys/audit/inter-process.c +++ b/tests/sys/audit/inter-process.c @@ -460,7 +460,7 @@ ATF_TC_BODY(shmat_success, tc) /* Check for shared memory ID and process address in record */ snprintf(ipcregex, sizeof(ipcregex), "shmat.*Shared Memory " - "IPC.*%d.*return,success,%d", shmid, (int)addr); + "IPC.*%d.*return,success", shmid); check_audit(fds, ipcregex, pipefd); /* Destroy the shared memory with ID = shmid */