Clean-up: sessiond comm relay: change spaces to tabs
[lttng-tools.git] / src / common / location.c
index 0482c443df5a2c50fc46a886a4f21847198a636c..294378c75a3b90611b04733bdcb005e90cef8170 100644 (file)
@@ -1,18 +1,8 @@
 /*
- * Copyright (C) 2018 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ * Copyright (C) 2018 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
- * This library is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License, version 2.1 only,
- * as published by the Free Software Foundation.
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
- * This library 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 Lesser General Public License
- * for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this library; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include <lttng/location-internal.h>
@@ -199,6 +189,7 @@ ssize_t lttng_trace_archive_location_create_from_buffer(
                goto error;
        }
 
+       return offset;
 error:
        return -1;
 }
@@ -210,7 +201,6 @@ ssize_t lttng_trace_archive_location_serialize(
 {
        int ret;
        struct lttng_trace_archive_location_comm location_comm;
-       const size_t original_buffer_size = buffer->size;
 
        location_comm.type = (int8_t) location->type;
 
@@ -268,7 +258,7 @@ ssize_t lttng_trace_archive_location_serialize(
                abort();
        }
 
-       return buffer->size - original_buffer_size;
+       return 0;
 error:
        return -1;
 }
This page took 0.024675 seconds and 5 git commands to generate.