1
0
mirror of https://github.com/richardghirst/PiBits.git synced 2024-11-28 12:24:11 +01:00

fix dumb typo

This commit is contained in:
Robin Mallinson 2012-11-18 14:57:55 +00:00
parent 90dfe77fd5
commit 38101f8a62
2 changed files with 2 additions and 2 deletions

View File

@ -318,7 +318,7 @@ void cleanup_module(void)
// This stores the /dev/servoblaster content for a given user process.
struct userReturnedData {
int idx=0;
int idx;
char returnedData[NUM_SERVOS * 10];
};
@ -326,7 +326,7 @@ struct userReturnedData {
// e.g. "3=180"
// Line length is expected to be <32
struct userCommandData {
int idx=0;
int idx;
char commandData[32];
};

Binary file not shown.