From b78e030bcc4aac67ce58794c467fd46a18055aea Mon Sep 17 00:00:00 2001
From: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Thu, 11 Feb 2016 19:03:42 -0500
Subject: [PATCH] fix format string bug in fptox.c

---
 lisc/tools/fptox.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisc/tools/fptox.c b/lisc/tools/fptox.c
index 8f07565..a2bc155 100644
--- a/lisc/tools/fptox.c
+++ b/lisc/tools/fptox.c
@@ -13,6 +13,6 @@ main(int ac, char *av[])
 		return 1;
 	}
 	f = d = strtod(av[1], 0);
-	printf("0x%08x 0x%016lx\n", *(unsigned *)&f, *(unsigned long long*)&d);
+	printf("0x%08x 0x%016llx\n", *(unsigned *)&f, *(unsigned long long*)&d);
 	return 0;
 }