Skip to content

Commit 1742fa8

Browse files
committed
FIX: warning: differs in levels of indirection
1 parent 6e8f18d commit 1742fa8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/os/win32/host-image.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
**
33
** REBOL [R3] Language Interpreter and Run-time Environment
44
**
5-
** Copyright 2019 Oldes
5+
** Copyright 2019-2023 Oldes
66
**
77
** Licensed under the Apache License, Version 2.0 (the "License");
88
** you may not use this file except in compliance with the License.
@@ -42,7 +42,7 @@
4242
**
4343
***********************************************************************/
4444
{
45-
DecodeImageFromFile(uri, frame, codi);
45+
DecodeImageFromFile((PCWSTR*)uri, frame, codi);
4646
}
4747

4848
/***********************************************************************
@@ -53,7 +53,7 @@
5353
**
5454
***********************************************************************/
5555
{
56-
EncodeImageToFile(uri, codi);
56+
EncodeImageToFile((PCWSTR*)uri, codi);
5757
}
5858

5959
/***********************************************************************

0 commit comments

Comments
 (0)