From 4e6948474c19e4efe69b6ec73046e9d039780580 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 16 Sep 2005 14:20:51 +0000 Subject: [PATCH] Cosmetics --- cpukit/libnetworking/nfs/bootp_subr.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/cpukit/libnetworking/nfs/bootp_subr.c b/cpukit/libnetworking/nfs/bootp_subr.c index 77e133a36f..3ad2a38ac1 100644 --- a/cpukit/libnetworking/nfs/bootp_subr.c +++ b/cpukit/libnetworking/nfs/bootp_subr.c @@ -635,10 +635,8 @@ bootpc_adjust_interface(struct ifreq *ireq,struct socket *so, } #if !defined(__rtems__) -static int setfs(addr, path, p) - struct sockaddr_in *addr; - char *path; - char *p; +static int +setfs(struct sockaddr_in *addr, char *path, char *p) { unsigned ip = 0; int val; @@ -670,8 +668,8 @@ static int setfs(addr, path, p) #endif #if !defined(__rtems__) -static int getdec(ptr) - char **ptr; +static int +getdec(char **ptr) { char *p = *ptr; int ret=0; @@ -686,8 +684,8 @@ static int getdec(ptr) #endif #if !defined(__rtems__) -static char *substr(a,b) - char *a,*b; +static char * +substr(char *a, char *b) { char *loc1; char *loc2;