1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

cosmetics: Remove trailing whitespace and tabs.

Originally committed as revision 8838 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2007-04-26 19:27:32 +00:00
parent c23a470800
commit 4ee10633d2
3 changed files with 8 additions and 8 deletions

View File

@@ -107,10 +107,10 @@ int resolve_host(struct in_addr *sin_addr, const char *hostname)
struct hostent *hp;
if (!inet_aton(hostname, sin_addr)) {
hp = gethostbyname(hostname);
if (!hp)
return -1;
memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
hp = gethostbyname(hostname);
if (!hp)
return -1;
memcpy(sin_addr, hp->h_addr, sizeof(struct in_addr));
}
return 0;
}