diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-31 10:11:28 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-31 10:11:28 +0200 |
commit | 156d23df6d0414c254b9f6e7ce18052ac3e71658 (patch) | |
tree | cf68b89c3cff52b8882329e16f68e2fcd7d69885 /src/lib/eiotas_room.c | |
parent | ea2f90e7d0e3a0bda886eeccb11b8d7dbbf0250e (diff) | |
download | edoors-156d23df6d0414c254b9f6e7ce18052ac3e71658.zip edoors-156d23df6d0414c254b9f6e7ce18052ac3e71658.tar.gz |
add const to some function parameters
Diffstat (limited to 'src/lib/eiotas_room.c')
-rw-r--r-- | src/lib/eiotas_room.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eiotas_room.c b/src/lib/eiotas_room.c index 3fc6a36..bc508ae 100644 --- a/src/lib/eiotas_room.c +++ b/src/lib/eiotas_room.c @@ -19,7 +19,7 @@ #include "eiotas_room.h" #include "eiotas_private.h" -EAPI Eiotas_Room* eiotas_room_add(const char* name, Eiotas_Room *parent) +EAPI Eiotas_Room* eiotas_room_add(const char* name, const Eiotas_Room *parent) { CHECK_PARENT(); |