aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-unpack.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/pkg-unpack.cxx')
-rw-r--r--bpkg/pkg-unpack.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/bpkg/pkg-unpack.cxx b/bpkg/pkg-unpack.cxx
index c224350..5af8a10 100644
--- a/bpkg/pkg-unpack.cxx
+++ b/bpkg/pkg-unpack.cxx
@@ -215,7 +215,7 @@ namespace bpkg
return p;
}
- void
+ int
pkg_unpack (const pkg_unpack_options& o, cli::scanner& args)
{
tracer trace ("pkg_unpack");
@@ -255,5 +255,7 @@ namespace bpkg
if (verb)
text << "unpacked " << p->name << " " << p->version;
+
+ return 0;
}
}