Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/ibm-public/postfix/dist/src/util Add missing semico...



details:   https://anonhg.NetBSD.org/src/rev/acd783ca420b
branches:  trunk
changeset: 765569:acd783ca420b
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Mon May 30 18:47:27 2011 +0000

description:
Add missing semicolon so it compiles

diffstat:

 external/ibm-public/postfix/dist/src/util/unix_recv_fd.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 9351f226fc6b -r acd783ca420b external/ibm-public/postfix/dist/src/util/unix_recv_fd.c
--- a/external/ibm-public/postfix/dist/src/util/unix_recv_fd.c  Mon May 30 18:14:11 2011 +0000
+++ b/external/ibm-public/postfix/dist/src/util/unix_recv_fd.c  Mon May 30 18:47:27 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: unix_recv_fd.c,v 1.5 2011/05/30 16:24:13 joerg Exp $   */
+/*     $NetBSD: unix_recv_fd.c,v 1.6 2011/05/30 18:47:27 pgoyette Exp $        */
 
 /*++
 /* NAME
@@ -73,7 +73,7 @@
 #  ifdef __clang__
        char    control[128];
 #  else
-       char    control[CMSG_SPACE(sizeof(newfd))]
+       char    control[CMSG_SPACE(sizeof(newfd))];
 #  endif
     }       control_un;
     struct cmsghdr *cmptr;



Home | Main Index | Thread Index | Old Index