summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-13 07:02:30 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-05-13 07:02:30 +0000
commit2a83a395b9eb365a0c57c9ee2e25f40486776639 (patch)
tree5d5dec02f817e3dfcef7211f62038ff2801a626d /plugins
parentd923b4329d7e2a8e48c57f503514bfeeca7c6b87 (diff)
downloadpcsxr-2a83a395b9eb365a0c57c9ee2e25f40486776639.tar.gz
minor whitespace change
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@47953 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
-rw-r--r--plugins/dfnet/gui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/dfnet/gui.c b/plugins/dfnet/gui.c
index 6425c9e5..577c6d7d 100644
--- a/plugins/dfnet/gui.c
+++ b/plugins/dfnet/gui.c
@@ -56,7 +56,7 @@ void sockGetIP(char *IPAddress) {
if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) >= 0) {
ifc.ifc_len = sizeof(buf);
ifc.ifc_buf = (caddr_t)buf;
- if (!ioctl (fd, SIOCGIFCONF, (char *)&ifc)) {
+ if (!ioctl(fd, SIOCGIFCONF, (char *)&ifc)) {
intrface = ifc.ifc_len / sizeof(struct ifreq);
while (intrface-- > 0) {
if (!(ioctl(fd, SIOCGIFADDR, (char *)&buf[intrface]))) {
@@ -64,8 +64,8 @@ void sockGetIP(char *IPAddress) {
strcpy(IPAddress, inet_ntoa(addr.sin_addr));
break;
}
- }
- }
+ }
+ }
close(fd);
}
}