summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaywalker <jwilliams@nsllc.com>2018-02-07 00:15:24 -0600
committerSam Bingner <sam@bingner.com>2019-12-26 15:10:36 -1000
commitcad5264b8ad7c89901dfaff87c9794f82444b43b (patch)
tree40e0fc4fc112b1d6c1d92e1a8b1f238aef0d2e91
parent18876defc0a550f09b4ca64f331d804101396e65 (diff)
Missed a semicolon
-rw-r--r--apt-pkg/contrib/fileutl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc
index 17c605ee6..6c13a15be 100644
--- a/apt-pkg/contrib/fileutl.cc
+++ b/apt-pkg/contrib/fileutl.cc
@@ -186,7 +186,7 @@ static char *searchpath(const char *binaryname){
strcpy(foundpath, binaryname);
return foundpath;
} else {
- return NULL
+ return NULL;
}
}