Explorar o código

wifi_essid: Fix coding style

Only initialize variables at the beginning of a block
Aaron Marcher %!s(int64=7) %!d(string=hai) anos
pai
achega
1c44d404f6
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      components/wifi.c

+ 2 - 2
components/wifi.c

@@ -66,14 +66,14 @@
 	wifi_essid(const char *iface)
 	{
 		static char id[IW_ESSID_MAX_SIZE+1];
-		int sockfd = socket(AF_INET, SOCK_DGRAM, 0);
+		int sockfd;
 		struct iwreq wreq;
 
 		memset(&wreq, 0, sizeof(struct iwreq));
 		wreq.u.essid.length = IW_ESSID_MAX_SIZE+1;
 		snprintf(wreq.ifr_name, sizeof(wreq.ifr_name), "%s", iface);
 
-		if (sockfd < 0) {
+		if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
 			fprintf(stderr, "socket 'AF_INET': %s\n",
 			        strerror(errno));
 			return NULL;