summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2023-02-21 19:41:02 +0100
committerChristian Göttsche <cgzones@googlemail.com>2023-02-21 19:41:02 +0100
commit1c2d1fffaffb1cd97b49d48c503d8dde03f56696 (patch)
treeef909b7cd00df83854acc27dbc15f05c972ebfd2 /src
parentb2897ab819812060c43ebc9fafa1483b1843536b (diff)
downloadpatchelf-1c2d1fffaffb1cd97b49d48c503d8dde03f56696.tar.gz
Drop superfluous semicolons
Diffstat (limited to 'src')
-rw-r--r--src/patchelf.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/patchelf.cc b/src/patchelf.cc
index 0b7c249..c33379f 100644
--- a/src/patchelf.cc
+++ b/src/patchelf.cc
@@ -1472,7 +1472,7 @@ void ElfFile<ElfFileParamNames>::modifyRPath(RPathOp op,
case rpPrint: {
printf("%s\n", rpath ? rpath : "");
return;
- };
+ }
case rpRemove: {
if (!rpath) {
debug("no RPATH to delete\n");
@@ -1485,7 +1485,7 @@ void ElfFile<ElfFileParamNames>::modifyRPath(RPathOp op,
if (!rpath) {
debug("no RPATH to shrink\n");
return;
- ;}
+ }
newRPath = shrinkRPath(rpath, neededLibs, allowedRpathPrefixes);
break;
}