From 6ca14046f39dad5eec07f1e79b236790438e1ea6 Mon Sep 17 00:00:00 2001 From: Sebastien Vincent Date: Tue, 23 Mar 2010 21:22:13 +0100 Subject: [PATCH] Fix build on MinGW. --- src/devices/wimax/bs-uplink-scheduler-mbqos.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/wimax/bs-uplink-scheduler-mbqos.cc b/src/devices/wimax/bs-uplink-scheduler-mbqos.cc index 2238ca78a..b68a028d9 100644 --- a/src/devices/wimax/bs-uplink-scheduler-mbqos.cc +++ b/src/devices/wimax/bs-uplink-scheduler-mbqos.cc @@ -782,9 +782,9 @@ UplinkSchedulerMBQoS::CheckMinimumBandwidth (uint32_t &availableSymbols) } else { - u_int32_t allocationSize = serviceFlow->GetRecord ()->GetRequestedBandwidth () + uint32_t allocationSize = serviceFlow->GetRecord ()->GetRequestedBandwidth () - serviceFlow->GetRecord ()->GetGrantedBandwidth (); - u_int32_t sduSize = serviceFlow->GetSduSize (); + uint32_t sduSize = serviceFlow->GetSduSize (); if (allocationSize > 0) {