diff options
author | Jaywalker <jwilliams@nsllc.com> | 2018-02-07 00:15:24 -0600 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2019-12-26 15:10:36 -1000 |
commit | cad5264b8ad7c89901dfaff87c9794f82444b43b (patch) | |
tree | 40e0fc4fc112b1d6c1d92e1a8b1f238aef0d2e91 | |
parent | 18876defc0a550f09b4ca64f331d804101396e65 (diff) |
Missed a semicolon
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 2 |
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; } } |