projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
048e260
)
Eliminate compiler warning.
author
Chris Hanson
<org/chris-hanson/cph>
Thu, 28 Oct 1999 03:53:51 +0000
(
03:53
+0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Thu, 28 Oct 1999 03:53:51 +0000
(
03:53
+0000)
v7/src/microcode/os2sock.c
patch
|
blob
|
history
diff --git
a/v7/src/microcode/os2sock.c
b/v7/src/microcode/os2sock.c
index cff618c3c40e6115e437d949c2671c12da528d14..325c14acb94b3889228eac8e7cbb6e2e8d365439 100644
(file)
--- a/
v7/src/microcode/os2sock.c
+++ b/
v7/src/microcode/os2sock.c
@@
-1,6
+1,6
@@
/* -*-C-*-
-$Id: os2sock.c,v 1.1
3 1999/08/15 15:25:29
cph Exp $
+$Id: os2sock.c,v 1.1
4 1999/10/28 03:53:51
cph Exp $
Copyright (c) 1990-1999 Massachusetts Institute of Technology
@@
-180,7
+180,9
@@
const char *
OS_get_host_by_address (const char * host_addr)
{
struct hostent * entry
- = (gethostbyaddr (host_addr, (OS_host_address_length ()), AF_INET));
+ = (gethostbyaddr (((char *) host_addr),
+ (OS_host_address_length ()),
+ AF_INET));
if (entry == 0)
return (0);
{