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
57903bdeb8
commit
a13d8b1ecf
|
@ -271,7 +271,7 @@ static int serbb_open(PROGRAMMER *pgm, char *port)
|
|||
LPVOID lpMsgBuf;
|
||||
HANDLE hComPort = INVALID_HANDLE_VALUE;
|
||||
|
||||
if (bitbang_check_prerequisites(pgm) < 0
|
||||
if (bitbang_check_prerequisites(pgm) < 0)
|
||||
return -1;
|
||||
|
||||
hComPort = CreateFile(port, GENERIC_READ | GENERIC_WRITE, 0, NULL,
|
||||
|
|
Loading…
Reference in New Issue