aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-12 19:51:32 +0000
committerlloyd <[email protected]>2010-10-12 19:51:32 +0000
commita85f136550c08fc878e3983866af0e6460e980da (patch)
treee495666a243affb92b8a1c5097d536b22c305580 /src/utils
parentff2210b035a1598bf99e18a578ff075bece8fbe5 (diff)
Use size_t in filters
This breaks API for anyone creating their own Filter types, but it had to happen eventually.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/types.h b/src/utils/types.h
index c14149779..61a55368c 100644
--- a/src/utils/types.h
+++ b/src/utils/types.h
@@ -52,7 +52,7 @@ typedef signed int s32bit;
/**
* A default buffer size; typically a memory page
*/
-static const u32bit DEFAULT_BUFFERSIZE = BOTAN_DEFAULT_BUFFER_SIZE;
+static const size_t DEFAULT_BUFFERSIZE = BOTAN_DEFAULT_BUFFER_SIZE;
}