From 17092f3637a104e4dc457db6dd609b260744bccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yetkin=20=C3=96zt=C3=BCrk?= Date: Sun, 6 Apr 2014 18:07:12 +0200 Subject: [PATCH] Update mpc.h mpc_state_t and mpc_err_t member order changed for better structure data alignment. --- mpc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mpc.h b/mpc.h index d75558b..f47391a 100644 --- a/mpc.h +++ b/mpc.h @@ -22,17 +22,17 @@ */ typedef struct { - char next; int pos; int row; int col; + char next; } mpc_state_t; typedef struct { mpc_state_t state; + int expected_num; char *filename; char *failure; - int expected_num; char **expected; } mpc_err_t;