From 16e534fdc30615864bf3a60943a9daa417ea5cb1 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 27 Oct 2020 14:07:56 -0500 Subject: Fix arrangment + comment --- P2/lib/utils.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'P2/lib') diff --git a/P2/lib/utils.c b/P2/lib/utils.c index 6fa454e..ea2ed3d 100644 --- a/P2/lib/utils.c +++ b/P2/lib/utils.c @@ -1,8 +1,7 @@ #include "utils.h" int openQueue() { - key_t Qkey = ftok("4061 Project 2 SS", 'S'); - int id = msgget(Qkey, 0666 | IPC_CREAT); + int id = msgget(ftok("4061 Project 2 SS", 'S'), 0666 | IPC_CREAT); if (id < 0) { perror("Cannot open queue.\n"); -- cgit v1.2.3