[bwm-tools-devel] COMMIT - r50 - trunk/include
Brought to you by:
nkukard
From: SVN C. <sv...@li...> - 2005-01-19 18:26:30
|
Author: nkukard Date: 2005-01-19 20:26:08 +0200 (Wed, 19 Jan 2005) New Revision: 50 Modified: trunk/include/flow.h Log: * Small bugfix in bounds of prio Modified: trunk/include/flow.h =================================================================== --- trunk/include/flow.h 2005-01-19 17:04:10 UTC (rev 49) +++ trunk/include/flow.h 2005-01-19 18:26:08 UTC (rev 50) @@ -59,7 +59,7 @@ { GMutex *lock; - long int prio; + unsigned char prio; struct flow_t *parentFlow; // void* because we cannot ref below? @@ -69,7 +69,7 @@ long int curLen; long int maxSize; long int maxLen; - + GList *packets; }; |