Skip to content

Commit cfb060f

Browse files
committed
FIX: silenced incompatible pointer types passing warning
1 parent 218e5c7 commit cfb060f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/os/osx/host-image.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
/***********************************************************************
3636
**
37-
*/ void OS_Load_Image(REBUNI *uri, REBCNT frame, REBCDI *codi)
37+
*/ void OS_Load_Image(const char *uri, REBCNT frame, REBCDI *codi)
3838
/*
3939
** Decodes image from specified file. If its multi-image type, it's possible
4040
** to specify which frame to load.
@@ -46,7 +46,7 @@
4646

4747
/***********************************************************************
4848
**
49-
*/ void OS_Save_Image(REBUNI *uri, REBCDI *codi)
49+
*/ void OS_Save_Image(const char *uri, REBCDI *codi)
5050
/*
5151
** Encodes image to specified file.
5252
**

0 commit comments

Comments
 (0)