diff options
| author | 2019-03-11 20:08:03 +0530 | |
|---|---|---|
| committer | 2019-03-11 20:08:03 +0530 | |
| commit | 8882aa802286a98287f066cc316bd6f17bf58b81 (patch) | |
| tree | ce20274e7711f8eabd41a6714f89f113863ab1df /src | |
| parent | b95d1de4c5cd9869e3fd3db21cc933a27bf1b864 (diff) | |
| download | nnn-8882aa802286a98287f066cc316bd6f17bf58b81.tar.gz | |
No need to use packed structs
Diffstat (limited to 'src')
| -rw-r--r-- | src/nnn.c | 6 | ||||
| -rw-r--r-- | src/nnn.h | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -267,13 +267,13 @@ typedef struct entry { mode_t mode; ushort nlen; /* Length of file name; can be uchar (< NAME_MAX + 1) */ uchar flags; /* Flags specific to the file */ -} __attribute__ ((packed, aligned(_ALIGNMENT))) *pEntry; +} __attribute__ ((aligned(_ALIGNMENT))) *pEntry; /* Bookmark */ typedef struct { int key; char *loc; -} __attribute__ ((packed)) bm; +} bm; /* Settings */ typedef struct { @@ -311,7 +311,7 @@ typedef struct { char c_name[NAME_MAX + 1]; /* Current file name */ settings c_cfg; /* Current configuration */ uint color; /* Color code for directories */ -} __attribute__ ((packed)) context; +} context; /* GLOBALS */ @@ -102,7 +102,7 @@ enum action { struct key { int sym; /* Key pressed */ enum action act; /* Action */ -} __attribute__ ((packed)); +}; static struct key bindings[] = { /* Back */ |