diff options
author | Jaywalker <jwilliams@nsllc.com> | 2018-02-07 00:15:24 -0600 |
---|---|---|
committer | Jaywalker <jwilliams@nsllc.com> | 2018-02-07 00:15:24 -0600 |
commit | a227e74c6eeeca16ecb5dd6faa933e6d8c297841 (patch) | |
tree | 8a64a4e178bb2316153bfe6be1088e7927c7faa8 | |
parent | 2d71f8c24d490b5a3773821264124f0ed5c9a9d2 (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 e3fb1cc90..383a9b7aa 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -180,7 +180,7 @@ static char *searchpath(const char *binaryname){ strcpy(foundpath, binaryname); return foundpath; } else { - return NULL + return NULL; } } |