Skip to content

Commit

Permalink
Fixed a typo in the source code (in a preprocessor directive).
Browse files Browse the repository at this point in the history
  • Loading branch information
mdadams committed Feb 12, 2024
1 parent 6c723e8 commit 6504d16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libjasper/base/jas_malloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ size_t jas_get_total_mem_size()
return 0;
}
return JAS_CAST(size_t, value);
#elif defined(__unix__) && (!defined(__linux__) && !defined(__APPLE__) && !(defined(__DJGPP__))
#elif defined(__unix__) && (!defined(__linux__) && !defined(__APPLE__) && !defined(__DJGPP__))
/*
Reference:
https://stackoverflow.com/questions/2513505/how-to-get-available-memory-c-g
Expand Down

0 comments on commit 6504d16

Please sign in to comment.