s3: Fix some nonempty line endings
authorVolker Lendecke <vl@samba.org>
Mon, 29 Oct 2012 15:35:49 +0000 (16:35 +0100)
committerJeremy Allison <jra@samba.org>
Mon, 29 Oct 2012 21:23:08 +0000 (22:23 +0100)
Reviewed by Jeremy Allison <jra@samba.org>

source3/lib/file_id.c

index 1640708d6c50902baceee16e58cbc6f90da34b16..360b3551f2bc6b59d34d0da3f8e1f0a4ec06a8c5 100644 (file)
@@ -1,20 +1,20 @@
-/* 
+/*
    Unix SMB/CIFS implementation.
 
    file_id structure handling
 
    Copyright (C) Andrew Tridgell 2007
-   
+
    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/>.
 */
@@ -37,7 +37,7 @@ bool file_id_equal(const struct file_id *id1, const struct file_id *id2)
 const char *file_id_string_tos(const struct file_id *id)
 {
        char *result = talloc_asprintf(talloc_tos(), "%llx:%llx:%llx",
-                                      (unsigned long long)id->devid, 
+                                      (unsigned long long)id->devid,
                                       (unsigned long long)id->inode,
                                       (unsigned long long)id->extid);
        SMB_ASSERT(result != NULL);