From 8f16b62db67f5ec4a859de95016ed3efbb8d1a67 Mon Sep 17 00:00:00 2001 From: edmccard Date: Fri, 6 Apr 2012 18:23:09 -0400 Subject: [PATCH] facepalm --- test/base.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/base.d b/test/base.d index 853608c..321eca4 100644 --- a/test/base.d +++ b/test/base.d @@ -122,7 +122,7 @@ struct Block * If data is longer than max, the string will end with an indication * of the number of extra bytes. */ -string formatMemory(const(ubyte[]) data, ulong max = 3) +string formatMemory(const(ubyte[]) data, size_t max = 3) { if (max > data.length) max = data.length; auto hexbytes = map!(`format("%0.2X", a)`)(data[0..max]);