]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/test/test-dlopen.c
tree-wide: beautify remaining copyright statements
[thirdparty/systemd.git] / src / test / test-dlopen.c
index 151d2d72b214f207273e42979d9f2ae02479b311..d9dff0fe458cf7bbf7623c6e42806b7f9ab8217a 100644 (file)
@@ -1,8 +1,6 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
 /***
-  This file is part of systemd.
-
-  Copyright 2016 Zbigniew Jędrzejewski-Szmek
+  Copyright © 2016 Zbigniew Jędrzejewski-Szmek
 ***/
 
 #include <dlfcn.h>
@@ -13,7 +11,7 @@
 int main(int argc, char **argv) {
         void *handle;
 
-        assert_se((handle = dlopen(argv[1], RTLD_NOW)));
+        assert_se(handle = dlopen(argv[1], RTLD_NOW));
         assert_se(dlclose(handle) == 0);
 
         return EXIT_SUCCESS;