From b6ee0dca3be2c6fda889232eefe766706e01ce35 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Mon, 13 Apr 2009 15:17:04 -0500 Subject: [PATCH] Fix compile warning --- build-support/factor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-support/factor.sh b/build-support/factor.sh index ad64c541fe..2fec39f14a 100755 --- a/build-support/factor.sh +++ b/build-support/factor.sh @@ -199,7 +199,7 @@ find_architecture() { write_test_program() { echo "#include " > $C_WORD.c - echo "int main(){printf(\"%d\", 8*sizeof(void*)); return 0; }" >> $C_WORD.c + echo "int main(){printf(\"%ld\", 8*sizeof(void*)); return 0; }" >> $C_WORD.c } c_find_word_size() {