This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] unmatched brace in CYG_HAL_SYS_FD_ZERO


CYG_HAL_SYS_FD_ZERO needs a right curly to close the for loop....
cheers.
(I'm not subscribed)


Index: hal/synth/arch/current/include/hal_io.h
===================================================================
RCS file: /ecos/packages/hal/synth/arch/current/include/hal_io.h,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 hal_io.h
--- hal/synth/arch/current/include/hal_io.h     17 Apr 2003 21:48:59 -0000 1.1.1.1
+++ hal/synth/arch/current/include/hal_io.h     17 Jun 2004 21:54:08 -0000
@@ -309,6 +309,7 @@
              __i < (CYG_HAL_SYS_FD_SETSIZE / CYG_HAL_SYS__NFDBITS);     \
              __i++) {                                                   \
            (_fdsp_)->hal_fds_bits[__i] = 0;                             \
+        }                                                               \
      } while (0);

 #define CYG_HAL_SYS_FD_SET(_fd_, _fdsp_)                                \




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]