diff options
author | Volker Lendecke <vl@samba.org> | 2013-09-14 13:44:54 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2013-10-02 15:02:07 +0200 |
commit | 7c0277c923443402b8a292fd3b3b1faba1da6dd5 (patch) | |
tree | 158c1d401a9124589f8d2b28082c88a11de9a341 /librpc/ndr/ndr_basic.c | |
parent | 816e68f94fe500b9d68fd29021d432b84d3139b7 (diff) | |
download | samba-7c0277c923443402b8a292fd3b3b1faba1da6dd5.tar.gz samba-7c0277c923443402b8a292fd3b3b1faba1da6dd5.tar.xz samba-7c0277c923443402b8a292fd3b3b1faba1da6dd5.zip |
librpc: Fix blank line endings
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Wed Oct 2 15:02:07 CEST 2013 on sn-devel-104
Diffstat (limited to 'librpc/ndr/ndr_basic.c')
-rw-r--r-- | librpc/ndr/ndr_basic.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/librpc/ndr/ndr_basic.c b/librpc/ndr/ndr_basic.c index 113745ce978..ae5af7a4a5f 100644 --- a/librpc/ndr/ndr_basic.c +++ b/librpc/ndr/ndr_basic.c @@ -1,20 +1,20 @@ -/* +/* Unix SMB/CIFS implementation. routines for marshalling/unmarshalling basic types Copyright (C) Andrew Tridgell 2003 - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ @@ -1005,7 +1005,7 @@ _PUBLIC_ void ndr_print_null(struct ndr_print *ndr) ndr->print(ndr, "UNEXPECTED NULL POINTER"); } -_PUBLIC_ void ndr_print_enum(struct ndr_print *ndr, const char *name, const char *type, +_PUBLIC_ void ndr_print_enum(struct ndr_print *ndr, const char *name, const char *type, const char *val, uint32_t value) { if (ndr->flags & LIBNDR_PRINT_ARRAY_HEX) { @@ -1027,7 +1027,7 @@ _PUBLIC_ void ndr_print_bitmap_flag(struct ndr_print *ndr, size_t size, const ch while (!(flag & 1)) { flag >>= 1; value >>= 1; - } + } if (flag == 1) { ndr->print(ndr, " %d: %-25s", value, flag_name); } else { @@ -1165,7 +1165,7 @@ _PUBLIC_ void ndr_print_bad_level(struct ndr_print *ndr, const char *name, uint1 ndr->print(ndr, "UNKNOWN LEVEL %u", level); } -_PUBLIC_ void ndr_print_array_uint8(struct ndr_print *ndr, const char *name, +_PUBLIC_ void ndr_print_array_uint8(struct ndr_print *ndr, const char *name, const uint8_t *data, uint32_t count) { int i; @@ -1200,7 +1200,7 @@ _PUBLIC_ void ndr_print_array_uint8(struct ndr_print *ndr, const char *name, free(idx); } } - ndr->depth--; + ndr->depth--; #undef _ONELINE_LIMIT } |