Skip to content

Commit 1c2d1ff

Browse files
committed
Drop superfluous semicolons
1 parent b2897ab commit 1c2d1ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/patchelf.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,7 @@ void ElfFile<ElfFileParamNames>::modifyRPath(RPathOp op,
14721472
case rpPrint: {
14731473
printf("%s\n", rpath ? rpath : "");
14741474
return;
1475-
};
1475+
}
14761476
case rpRemove: {
14771477
if (!rpath) {
14781478
debug("no RPATH to delete\n");
@@ -1485,7 +1485,7 @@ void ElfFile<ElfFileParamNames>::modifyRPath(RPathOp op,
14851485
if (!rpath) {
14861486
debug("no RPATH to shrink\n");
14871487
return;
1488-
;}
1488+
}
14891489
newRPath = shrinkRPath(rpath, neededLibs, allowedRpathPrefixes);
14901490
break;
14911491
}

0 commit comments

Comments
 (0)