summaryrefslogtreecommitdiff
path: root/libguile/net_db.c
diff options
context:
space:
mode:
authorGreg J. Badros <gjb@cs.washington.edu>2000-01-05 19:25:37 +0000
committerGreg J. Badros <gjb@cs.washington.edu>2000-01-05 19:25:37 +0000
commit3b3b36ddb7dfbd5094abee360c253c8f1216dcdd (patch)
treebe6f18ee784818de032ac23e77470b67e260ffef /libguile/net_db.c
parentcbaee92a8b6d8abba6bd236d089a7e6c3cf471b3 (diff)
downloadguile-3b3b36ddb7dfbd5094abee360c253c8f1216dcdd.tar.gz
* *.[ch]: Whitespace changes -- added space after SCM_VALIDATE_*
macros and SCM_DEFINE macros to match GNU coding standards.
Diffstat (limited to 'libguile/net_db.c')
-rw-r--r--libguile/net_db.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/net_db.c b/libguile/net_db.c
index 73b8384ce..797a81ba3 100644
--- a/libguile/net_db.c
+++ b/libguile/net_db.c
@@ -95,7 +95,7 @@ dotted decimal notation into an integer.
{
struct in_addr soka;
- SCM_VALIDATE_ROSTRING(1,address);
+ SCM_VALIDATE_ROSTRING (1,address);
if (SCM_SUBSTRP (address))
address = scm_makfromstr (SCM_ROCHARS (address), SCM_ROLENGTH (address), 0);
if (inet_aton (SCM_ROCHARS (address), &soka) == 0)
@@ -175,8 +175,8 @@ with the local-address-within-network number @var{lna}.
unsigned long netnum;
unsigned long lnanum;
- SCM_VALIDATE_INUM_COPY(1,net,netnum);
- SCM_VALIDATE_INUM_COPY(2,lna,lnanum);
+ SCM_VALIDATE_INUM_COPY (1,net,netnum);
+ SCM_VALIDATE_INUM_COPY (2,lna,lnanum);
addr = inet_makeaddr (netnum, lnanum);
return scm_ulong2num (ntohl (addr.s_addr));
}
@@ -466,7 +466,7 @@ as its first argument; if given no arguments, it behaves like
}
return scm_return_entry (entry);
}
- SCM_VALIDATE_ROSTRING(2,proto);
+ SCM_VALIDATE_ROSTRING (2,proto);
SCM_COERCE_SUBSTR (proto);
if (SCM_ROSTRINGP (name))
{
@@ -475,7 +475,7 @@ as its first argument; if given no arguments, it behaves like
}
else
{
- SCM_VALIDATE_INUM(1,name);
+ SCM_VALIDATE_INUM (1,name);
entry = getservbyport (htons (SCM_INUM (name)), SCM_ROCHARS (proto));
}
if (!entry)