diff options
author | Ishan Jayawardena <udeshike@gmail.com> | 2011-07-16 14:08:08 +0530 |
---|---|---|
committer | Ishan Jayawardena <udeshike@gmail.com> | 2011-07-16 14:08:08 +0530 |
commit | 3efe86af099d5a5d05e2e61a571da864676834c7 (patch) | |
tree | 9e49cf64bcec05922a60d28fdf162bf5312e5d9e /apt-pkg/init.cc | |
parent | d981326d00730fb1af2ba5428d9d7557d9b05f9a (diff) |
fixed some indentation issues
Diffstat (limited to 'apt-pkg/init.cc')
-rw-r--r-- | apt-pkg/init.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index d3f573356..0bb106ac8 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -32,7 +32,6 @@ const char *pkgLibVersion = Stringfy(APT_PKG_MAJOR) "." is prepended, this allows a fair degree of flexability. */ bool pkgInitConfig(Configuration &Cnf) { - std::cerr << "pkgInitConfig()" << std::endl; // General APT things Cnf.Set("APT::Architecture", COMMON_ARCH); Cnf.Set("APT::Build-Essential::", "build-essential"); @@ -143,7 +142,6 @@ bool pkgInitSystem(Configuration &Cnf,pkgSystem *&Sys) { Sys = 0; string Label = Cnf.Find("Apt::System",""); - std::cerr << "pkgInitSystem() " << Label.c_str() << std::endl; if (Label.empty() == false) { Sys = pkgSystem::GetSystem(Label.c_str()); |