From 447f0596ad9671e19749e7c0281dd536fe6e1ba5 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 31 May 2015 21:08:52 +0200 Subject: [PATCH] Fix FSM_RESP_TCGETWINCURPOS being equal to FSM_REQ_STATVFS. --- libc/include/fsmarshall-msg.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/libc/include/fsmarshall-msg.h b/libc/include/fsmarshall-msg.h index df0b576a..a2f41759 100644 --- a/libc/include/fsmarshall-msg.h +++ b/libc/include/fsmarshall-msg.h @@ -355,12 +355,6 @@ struct fsm_req_tcgetwincurpos ino_t ino; }; -#define FSM_RESP_TCGETWINCURPOS 44 -struct fsm_resp_tcgetwincurpos -{ - struct wincurpos pos; -}; - #define FSM_REQ_STATVFS 44 struct fsm_req_statvfs { @@ -430,6 +424,13 @@ struct fsm_resp_tcsetblob size_t count; }; +#define FSM_RESP_TCGETWINCURPOS 53 +struct fsm_resp_tcgetwincurpos +{ + struct wincurpos pos; +}; + + #define FSM_MSG_NUM 53 __END_DECLS