summaryrefslogtreecommitdiff
path: root/src/print_mem.c
diff options
context:
space:
mode:
authorIngo Bürk <admin@airblader.de>2018-06-22 13:55:09 +0200
committerGitHub <noreply@github.com>2018-06-22 13:55:09 +0200
commit4d3344ab9cd68bad5faf4ed3dad185dfcacb1e3d (patch)
tree66846b5f6023291fda2d72fe523d4ee0614d2a1f /src/print_mem.c
parent64fd6e10478cabd0e2f9b554b71971a865c02d60 (diff)
parentc221b4d331d46d07fe24afc78e4eeb021556d013 (diff)
Merge pull request #290 from duskCoder/changes
Fix potential issues & avoid unnecessary instructions
Diffstat (limited to 'src/print_mem.c')
-rw-r--r--src/print_mem.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/print_mem.c b/src/print_mem.c
index 46523d6..a37fa29 100644
--- a/src/print_mem.c
+++ b/src/print_mem.c
@@ -39,10 +39,9 @@ static int print_bytes_human(char *outwalk, uint64_t bytes) {
*
*/
static long memory_absolute(const long mem_total, const char *size) {
- long mem_absolute = -1;
char *endptr = NULL;
- mem_absolute = strtol(size, &endptr, 10);
+ long mem_absolute = strtol(size, &endptr, 10);
if (endptr) {
while (endptr[0] != '\0' && isspace(endptr[0]))