Library/include/poll.h: Add missing semicolon
authorTormod Volden <debian.tormod@gmail.com>
Sun, 29 May 2016 15:03:33 +0000 (17:03 +0200)
committerAlan Cox <alan@etchedpixels.co.uk>
Tue, 31 May 2016 11:43:38 +0000 (12:43 +0100)
Signed-off-by: Tormod Volden <debian.tormod@gmail.com>
Library/include/poll.h

index 3eff11a..3f8bd62 100644 (file)
@@ -3,7 +3,7 @@
 
 struct pollfd {
   int fd;
-  short events
+  short events;
   short revents;
 };