Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Therning <niklas@therning.org>2016-11-18 00:14:24 +0300
committerNiklas Therning <niklas@therning.org>2016-11-18 00:14:24 +0300
commit77cec01d04768827ef0174ef70584f26bc09fe56 (patch)
tree330cedd2d597d32193ef4800220d1bb18013aa3b /support
parentb34a3d6b7833f662c69bbc88a3e226096a1c8289 (diff)
Fixes compile error in support/stdio.c on XA
Diffstat (limited to 'support')
-rw-r--r--support/stdio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/stdio.c b/support/stdio.c
index b914dfdb1d0..c05913fbe24 100644
--- a/support/stdio.c
+++ b/support/stdio.c
@@ -276,13 +276,13 @@ Mono_Posix_Stdlib_ungetc (gint32 c, void* stream)
gint32
Mono_Posix_Stdlib_feof (void* stream)
{
- return feof (stream);
+ return feof (((FILE*) stream));
}
gint32
Mono_Posix_Stdlib_ferror (void* stream)
{
- return ferror (stream);
+ return ferror (((FILE*) stream));
}
int