diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-12-20 21:27:56 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-12-20 21:27:56 +0000 |
commit | eb87f5f946876f39c37e116d941ddd2c73e81a49 (patch) | |
tree | 7ce6c714d8ff082e6e130f905dfeca484aabe580 | |
parent | e7a3a98865f8734d5b18abe89d55dd34fb7d68c5 (diff) |
replaced #elif with #else to fix compilation bug
svn path=/trunk/externals/iem/comport/; revision=4262
-rw-r--r-- | comport/comport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comport/comport.c b/comport/comport.c index c119d6f..f587034 100644 --- a/comport/comport.c +++ b/comport/comport.c @@ -329,7 +329,7 @@ static HANDLE open_serial(int com_nr, t_comport *x) OPEN_EXISTING, #ifdef WIN2000 0, -#elif +#else FILE_FLAG_OVERLAPPED, #endif 0); |