mirror of https://github.com/joan2937/pigpio
Corrected test list argument errors
This commit is contained in:
parent
a41d63493b
commit
bf390b4a2f
2
pigpio.h
2
pigpio.h
|
@ -31,7 +31,7 @@ For more information, please refer to <http://unlicense.org/>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
|
|
||||||
#define PIGPIO_VERSION 6509
|
#define PIGPIO_VERSION 6511
|
||||||
|
|
||||||
/*TEXT
|
/*TEXT
|
||||||
|
|
||||||
|
|
|
@ -856,7 +856,7 @@ int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int i, t, c, status;
|
int i, t, c, status;
|
||||||
|
|
||||||
char test[64];
|
char test[64]={0,};
|
||||||
|
|
||||||
if (argc > 1)
|
if (argc > 1)
|
||||||
{
|
{
|
||||||
|
|
|
@ -825,7 +825,7 @@ int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int i, t, c, status;
|
int i, t, c, status;
|
||||||
|
|
||||||
char test[64];
|
char test[64]={0,};
|
||||||
|
|
||||||
if (argc > 1)
|
if (argc > 1)
|
||||||
{
|
{
|
||||||
|
|
|
@ -837,7 +837,7 @@ int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int i, t, c, pi;
|
int i, t, c, pi;
|
||||||
|
|
||||||
char test[64];
|
char test[64]={0,};
|
||||||
|
|
||||||
if (argc > 1)
|
if (argc > 1)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue