]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/util.c
add terminal decision to `genac` and small fixes
[proxmark3-svn] / client / util.c
index 5dc9a4556b1668708f9323138191401593c95e1c..2be1e46b6fa4a03bc3c1bb170e1e7e579f349bc7 100644 (file)
@@ -16,7 +16,6 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <time.h>
-#include "data.h"
 
 #ifdef _WIN32
 #include <windows.h>
@@ -227,7 +226,7 @@ char *sprint_hex_ascii(const uint8_t *data, const size_t len) {
        memset(buf, 0x00, 1024);
        size_t max_len = (len > 255) ? 255 : len;
        // max 255 bytes * 3 + 2 characters = 767 in buffer
-       sprintf(tmp, "%s| ", sprint_hex(data, max_len) );
+       sprintf(tmp, "%.765s| ", sprint_hex(data, max_len) );
        
        size_t i = 0;
        size_t pos = (max_len * 3)+2;
Impressum, Datenschutz