X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcommon%2Fuuid.c;h=a0af2bc04dc75b57238cfda7d88ed000f92bbe32;hb=900eef7317d3e8b350a93fb8782639845c62c2bd;hp=7f817d0127085d89f03d1c706c4d0b7ae5d94b4c;hpb=00f637fdc6e017cfd6969ad81d11b35c0e98ab39;p=babeltrace.git diff --git a/src/common/uuid.c b/src/common/uuid.c index 7f817d01..a0af2bc0 100644 --- a/src/common/uuid.c +++ b/src/common/uuid.c @@ -1,23 +1,7 @@ /* - * Copyright (C) 2019 Michael Jeanson - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. + * SPDX-License-Identifier: MIT * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. + * Copyright (C) 2019 Michael Jeanson */ #include @@ -70,8 +54,8 @@ void bt_uuid_generate(bt_uuid_t uuid_out) BT_HIDDEN void bt_uuid_to_str(const bt_uuid_t uuid_in, char *str_out) { - BT_ASSERT(uuid_in); - BT_ASSERT(str_out); + BT_ASSERT_DBG(uuid_in); + BT_ASSERT_DBG(str_out); sprintf(str_out, BT_UUID_FMT, BT_UUID_FMT_VALUES(uuid_in)); } @@ -82,8 +66,8 @@ int bt_uuid_from_str(const char *str_in, bt_uuid_t uuid_out) int ret = 0; bt_uuid_t uuid_scan; - BT_ASSERT(uuid_out); - BT_ASSERT(str_in); + BT_ASSERT_DBG(uuid_out); + BT_ASSERT_DBG(str_in); if (strnlen(str_in, BT_UUID_STR_LEN + 1) != BT_UUID_STR_LEN) { ret = -1;