pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/pkgtools/pbulk/files/pbulk/pscan Fix indentation.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/85b9cead103f
branches:  trunk
changeset: 532225:85b9cead103f
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Tue Aug 14 13:15:58 2007 +0000

description:
Fix indentation.

diffstat:

 pkgtools/pbulk/files/pbulk/pscan/jobs.c |  14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diffs (34 lines):

diff -r 9c2059afbb86 -r 85b9cead103f pkgtools/pbulk/files/pbulk/pscan/jobs.c
--- a/pkgtools/pbulk/files/pbulk/pscan/jobs.c   Tue Aug 14 13:14:05 2007 +0000
+++ b/pkgtools/pbulk/files/pbulk/pscan/jobs.c   Tue Aug 14 13:15:58 2007 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: jobs.c,v 1.3 2007/06/25 21:38:46 joerg Exp $ */
+/* $NetBSD: jobs.c,v 1.4 2007/08/14 13:15:58 joerg Exp $ */
 
 /*-
  * Copyright (c) 2007 Joerg Sonnenberger <joerg%NetBSD.org@localhost>.
@@ -214,16 +214,20 @@
                        output[0].iov_base = UNCONST(begin_entry);
                        expected = output[0].iov_len =
                            end_line + 1 - begin_entry;
-                               output[1].iov_base = UNCONST("PKG_LOCATION=");
+
+                       output[1].iov_base = UNCONST("PKG_LOCATION=");
                        output[1].iov_len = strlen(output[1].iov_base);
                        expected += output[1].iov_len;
-                               output[2].iov_base = job->pkg_location;
+
+                       output[2].iov_base = job->pkg_location;
                        output[2].iov_len = strlen(output[2].iov_base);
                        expected += output[2].iov_len;
-                               output[3].iov_base = UNCONST("\n");
+
+                       output[3].iov_base = UNCONST("\n");
                        output[3].iov_len = 1;
                        expected += output[3].iov_len;
-                               output[4].iov_base = UNCONST(end_line + 1);
+
+                       output[4].iov_base = UNCONST(end_line + 1);
                        output[4].iov_len = end_entry - end_line - 1;
                        expected += output[4].iov_len;
 



Home | Main Index | Thread Index | Old Index