mirror of
https://github.com/jarun/nnn.git
synced 2024-11-10 15:13:51 +03:00
Use packed structures
This commit is contained in:
parent
0c63f474a3
commit
eb9faf0832
@ -269,7 +269,7 @@ typedef struct entry {
|
|||||||
typedef struct {
|
typedef struct {
|
||||||
int key;
|
int key;
|
||||||
char *loc;
|
char *loc;
|
||||||
} bm;
|
} __attribute__ ((packed)) bm;
|
||||||
|
|
||||||
/* Settings */
|
/* Settings */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
@ -307,7 +307,7 @@ typedef struct {
|
|||||||
char c_name[NAME_MAX + 1]; /* Current file name */
|
char c_name[NAME_MAX + 1]; /* Current file name */
|
||||||
settings c_cfg; /* Current configuration */
|
settings c_cfg; /* Current configuration */
|
||||||
uint color; /* Color code for directories */
|
uint color; /* Color code for directories */
|
||||||
} context;
|
} __attribute__ ((packed)) context;
|
||||||
|
|
||||||
/* GLOBALS */
|
/* GLOBALS */
|
||||||
|
|
||||||
|
@ -103,7 +103,7 @@ enum action {
|
|||||||
struct key {
|
struct key {
|
||||||
int sym; /* Key pressed */
|
int sym; /* Key pressed */
|
||||||
enum action act; /* Action */
|
enum action act; /* Action */
|
||||||
};
|
} __attribute__ ((packed));
|
||||||
|
|
||||||
static struct key bindings[] = {
|
static struct key bindings[] = {
|
||||||
/* Back */
|
/* Back */
|
||||||
|
Loading…
Reference in New Issue
Block a user