diff --git a/gen_intrange.c b/gen_intrange.c
index b5a9d50044989c213cecc4e5a959b3236a1be3c5..754553106e7a0e4db3dc0970c12388a0de8bffd0 100644
--- a/gen_intrange.c
+++ b/gen_intrange.c
@@ -28,7 +28,7 @@ int main(int argc, char *argv[]) {
     uint8_t bytes  = atoi(argv[1]);
     uint64_t low   = atoi(argv[2]);
     uint64_t high  = atoi(argv[3]);
-    printf("LOW = %d\nHIGH=%d\n", low, high);
+    printf("LOW = %llu\nHIGH=%llu\n", low, high);
     struct charset *cs = (struct charset *) calloc(sizeof(struct charset), 1);
 
     for (int i=0; i<256; i++)
@@ -46,14 +46,8 @@ int main(int argc, char *argv[]) {
 }
 
 
-/* bitmap-ism */
-
-
-
-/*
-
 void gen_int_range(uint64_t low, uint64_t high, uint8_t bytes) {
-  /* Possible FIXME: TallerThanMe * /
+  // Possible FIXME: TallerThanMe
   if (1 == bytes) {
     HCharset cs = new_charset(mm__);
     for (uint64_t i=low; i<=high; ++i) {
@@ -102,5 +96,3 @@ void gen_int_range(uint64_t low, uint64_t high, uint8_t bytes) {
   }
 }
 
-
-*/
\ No newline at end of file