diff --git a/configure b/configure index e31e2fb5676dd..4e5d717891efa 100755 --- a/configure +++ b/configure @@ -123,12 +123,12 @@ done : ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s} : ${INSTALL_MAN:=${INSTALL} -m 444} : ${INSTALL_LIB:=${INSTALL} -m 755 -c} - PKGNAME='radare2' ; VERSION='4.4.0-git' ; VERSION_MAJOR=4; VERSION_MINOR=4; VERSION_PATCH=0; VERSION_NUMBER=40400; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake " ; + PKGNAME='radare2' ; VERSION='4.4.0' ; VERSION_MAJOR=4; VERSION_MINOR=4; VERSION_PATCH=0; VERSION_NUMBER=40400; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake " ; } show_usage() { cat <." exit 0 @@ -240,7 +240,7 @@ case $flag in show_version ; ;; -r|--r|--report) echo "PKGNAME: radare2" -echo "VERSION: 4.4.0-git" +echo "VERSION: 4.4.0" echo "LANGS: c" echo "REQUIRED: libdl" echo "OPTIONAL: libmagic libz libzip libxxhash libssl liblibuv>=1.0.0" diff --git a/configure.acr b/configure.acr index 7e600904fd96a..638706ff17b6c 100644 --- a/configure.acr +++ b/configure.acr @@ -1,5 +1,5 @@ PKGNAME radare2 -VERSION 4.4.0-git +VERSION 4.4.0 CONTACT pancake ; pancake@nopcode.org LANG_C! diff --git a/libr/anal/fcn.c b/libr/anal/fcn.c index bc9cbe632f574..18f7b3453a7ea 100644 --- a/libr/anal/fcn.c +++ b/libr/anal/fcn.c @@ -523,7 +523,9 @@ static int fcn_recurse(RAnal *anal, RAnalFunction *fcn, ut64 addr, ut64 len, int } } if ((maxlen - (addrbytes * idx)) > MAX_SCAN_SIZE) { - eprintf ("Warning: Skipping large memory region.\n"); + if (anal->verbose) { + eprintf ("Warning: Skipping large memory region.\n"); + } maxlen = 0; } diff --git a/libr/util/file.c b/libr/util/file.c index 2b0804a62f4dd..5073a6e01dc0f 100644 --- a/libr/util/file.c +++ b/libr/util/file.c @@ -695,7 +695,7 @@ R_API bool r_file_hexdump(const char *file, const ut8 *buf, int len, int append) } R_API bool r_file_touch(const char *file) { - return r_file_dump(file, NULL, 0, true); + return r_file_dump (file, NULL, 0, true); } R_API bool r_file_dump(const char *file, const ut8 *buf, int len, bool append) {