From 67a4066738cbbe59f5ce911d8639c2bcbcf80211 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 3 Oct 2016 17:45:06 +0200 Subject: [PATCH] Fix typo --- src/core/receiver/control_thread.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/receiver/control_thread.cc b/src/core/receiver/control_thread.cc index b6c976f93..18e0ce6b9 100644 --- a/src/core/receiver/control_thread.cc +++ b/src/core/receiver/control_thread.cc @@ -90,7 +90,7 @@ ControlThread::~ControlThread() { // save navigation data to files // if (save_assistance_to_XML() == true) {} - if(msgiq != -1) msgctl(msqid, IPC_RMID, NULL);; + if(msqid != -1) msgctl(msqid, IPC_RMID, NULL); }