1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Fix FSM_RESP_TCGETWINCURPOS being equal to FSM_REQ_STATVFS.

This commit is contained in:
Jonas 'Sortie' Termansen 2015-05-31 21:08:52 +02:00
parent d235251139
commit 447f0596ad

View file

@ -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