pmap: fix column width, closes 13431
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
4a4b453a87
commit
2266c12a79
@ -27,20 +27,14 @@
|
|||||||
|
|
||||||
#include "libbb.h"
|
#include "libbb.h"
|
||||||
|
|
||||||
#if ULONG_MAX == 0xffffffff
|
#if ULLONG_MAX == 0xffffffff
|
||||||
# define TABS "\t"
|
# define TABS "\t"
|
||||||
# define AFMT "8"
|
# define AFMTLL "8"
|
||||||
# define DASHES ""
|
# define DASHES ""
|
||||||
#else
|
#else
|
||||||
# define TABS "\t\t"
|
# define TABS "\t\t"
|
||||||
# define AFMT "16"
|
|
||||||
# define DASHES "--------"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ULLONG_MAX == 0xffffffff
|
|
||||||
# define AFMTLL "8"
|
|
||||||
#else
|
|
||||||
# define AFMTLL "16"
|
# define AFMTLL "16"
|
||||||
|
# define DASHES "--------"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
Loading…
Reference in New Issue
Block a user