summaryrefslogtreecommitdiffstats
path: root/package/ola/ola-0001-fix-build-warning.patch
blob: 1fdb58fb285c13e94efecd0b93fc90af39d8c38d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Fix build on 64 bits architectures

This upstream patch fixes a warning that, due to -Werror, is causing
build failures on 64 bits architectures.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

commit ea375582b0bfee93d66608ffc807078ffc48e961
Author: Simon Newton <nomis52@gmail.com>
Date:   Wed Oct 30 09:23:49 2013 -0700

    * Avoid a compiler warning

diff --git a/plugins/e131/e131/PreamblePacker.cpp b/plugins/e131/e131/PreamblePacker.cpp
index ef29e18..8dfcc72 100644
--- a/plugins/e131/e131/PreamblePacker.cpp
+++ b/plugins/e131/e131/PreamblePacker.cpp
@@ -77,7 +77,8 @@ const uint8_t *PreamblePacker::Pack(const PDUBlock<PDU> &pdu_block,
   if (!m_send_buffer)
     Init();
 
-  unsigned int size = MAX_DATAGRAM_SIZE - sizeof(ACN_HEADER);
+  unsigned int size = MAX_DATAGRAM_SIZE -
+      static_cast<unsigned int>(sizeof(ACN_HEADER));
   if (!pdu_block.Pack(m_send_buffer + sizeof(ACN_HEADER), &size)) {
     OLA_WARN << "Failed to pack E1.31 PDU";
     return NULL;
OpenPOWER on IntegriCloud