Fix syntax error (forgotten closing paren).
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1302 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
8113ad8a87
commit
8df394ce07
|
@ -271,7 +271,7 @@ static int serbb_open(PROGRAMMER *pgm, char *port)
|
||||||
LPVOID lpMsgBuf;
|
LPVOID lpMsgBuf;
|
||||||
HANDLE hComPort = INVALID_HANDLE_VALUE;
|
HANDLE hComPort = INVALID_HANDLE_VALUE;
|
||||||
|
|
||||||
if (bitbang_check_prerequisites(pgm) < 0
|
if (bitbang_check_prerequisites(pgm) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
hComPort = CreateFile(port, GENERIC_READ | GENERIC_WRITE, 0, NULL,
|
hComPort = CreateFile(port, GENERIC_READ | GENERIC_WRITE, 0, NULL,
|
||||||
|
|
Loading…
Reference in New Issue