commit 85b87b14928594c798719c4c905589981ff4fea2 parent 13e5b89fafd2be8cfab5aa2f8077ef649f188f04 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Wed, 27 Jul 2016 15:24:03 +0200 Fix the profile of the s3d_shape_is_enabled implementation Diffstat:
| M | src/s3d_shape.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/s3d_shape.c b/src/s3d_shape.c @@ -174,7 +174,7 @@ s3d_shape_enable(struct s3d_shape* shape, const char enable) } res_T -s3d_shape_is_enabled(struct s3d_shape* shape, char* is_enabled) +s3d_shape_is_enabled(const struct s3d_shape* shape, char* is_enabled) { if(!shape || !is_enabled) return RES_BAD_ARG; *is_enabled = shape->is_enabled;