Fix gcc warnings about possibly uninitialized variables in gpioctl.c.

Noticed by:	bz
This commit is contained in:
Dimitry Andric 2016-03-12 15:10:30 +00:00
parent 250d9fd8aa
commit e74d991d69
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=296724

View File

@ -41,7 +41,6 @@ __FBSDID("$FreeBSD$");
#include <libgpio.h>
#define PIN_TYPE_UNKNOWN 0
#define PIN_TYPE_NUMBER 1
#define PIN_TYPE_NAME 2
@ -271,7 +270,7 @@ main(int argc, char **argv)
/* Find the pin number by the name */
switch (pin_type) {
case PIN_TYPE_UNKNOWN:
default:
/* First test if it is a pin number */
pinn = str2int(argv[0], &ok);
if (ok) {