Skip to content

Commit

Permalink
Merge pull request #17 from rekmus/nodepp_2_3_1
Browse files Browse the repository at this point in the history
Node++ 2.3.1
  • Loading branch information
rekmus authored Mar 24, 2024
2 parents bfa3eea + e76836d commit 787d267
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/npp.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
#include <stdarg.h>
#include <errno.h>
#include <limits.h> /* INT_MAX */
#include <cinttypes>
//#include <cinttypes>

#ifndef _WIN32
#include <unistd.h>
Expand Down Expand Up @@ -100,7 +100,7 @@ typedef char bool;
macros
-------------------------------------------------------------------------- */

#define NPP_VERSION "2.3.0"
#define NPP_VERSION "2.3.1"


#ifndef FALSE
Expand Down
3 changes: 2 additions & 1 deletion lib/npp_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -7384,7 +7384,8 @@ int64_t npp_open_read_file(const char *fname, void **data)
human_size_t hs;
human_size(size, &hs);

DBG("File size: %" PRId64 " bytes (%" PRId64 " KiB / %d MiB / %d GiB)", size, hs.kib, hs.mib, hs.gib);
// DBG("File size: %" PRId64 " bytes (%" PRId64 " KiB / %d MiB / %d GiB)", size, hs.kib, hs.mib, hs.gib);
DBG("File size: %ld bytes (%ld KiB / %d MiB / %d GiB)", size, hs.kib, hs.mib, hs.gib);

#endif

Expand Down

0 comments on commit 787d267

Please sign in to comment.