From fbfc8300154a868794047376db442cb4a2cf57a2 Mon Sep 17 00:00:00 2001
From: Guy Scharf <guy.oscar@moxis.com>
Date: Tue, 26 Jan 2021 12:37:27 -0700
Subject: [PATCH] Compensate for error message from linux compilers in
 DeVilbiss loader.

---
 oscar/SleepLib/loader_plugins/intellipap_loader.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/oscar/SleepLib/loader_plugins/intellipap_loader.cpp b/oscar/SleepLib/loader_plugins/intellipap_loader.cpp
index 32feb6eb..7c6cedb8 100644
--- a/oscar/SleepLib/loader_plugins/intellipap_loader.cpp
+++ b/oscar/SleepLib/loader_plugins/intellipap_loader.cpp
@@ -831,7 +831,7 @@ struct DV6_U_REC {
 };
 
 // DV6 R.BIN - High resolution data (breath) and moderate resolution (pressure, flags)
-PACK (struct DV6_R_REC {
+struct DV6_R_REC {
     unsigned char timestamp[4];
     qint16 breath[50];          // 50 breath flow records at 25 Hz
     unsigned char pressure1;    // pressure in first second of frame
@@ -841,7 +841,7 @@ PACK (struct DV6_R_REC {
     unsigned char flags1[4];    // flags for first second of frame
     unsigned char flags2[4];    // flags for second second of frame
     unsigned char checksum;
-});
+};
 
 // DV6 L.BIN - Low resolution data
 PACK (struct DV6_L_REC {