diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-09-22 13:36:39 +0000 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-09-22 13:36:39 +0000 |
commit | 14cd494a9fa0d6801410bf121beb74ea631d59a6 (patch) | |
tree | b25799799bb1f9d78ab167b91f21763ae3764aaa /cmdline | |
parent | ceb00be9927199c067827a630ddc254149afcb57 (diff) |
* make sure that the pkgRecords D'tor does not segfault
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-get.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index ac931373d..a22d881b6 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2013,7 +2013,7 @@ bool DoSource(CommandLine &CmdL) if (system(S) != 0) { fprintf(stderr,_("Unpack command '%s' failed.\n"),S); - fprintf(stderr,_("Check if the 'dpkg-dev' package is installed.\n"); + fprintf(stderr,_("Check if the 'dpkg-dev' package is installed.\n")); _exit(1); } } |