diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2008-08-06 14:01:29 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2008-08-06 14:01:29 +0200 |
commit | cb714f283871f3deb9e0f8566ab6866ae9d7791e (patch) | |
tree | 85e812387cd35c5982405c6666ca65fddbdda27b /apt-pkg/depcache.cc | |
parent | cbf217843cc8eaaebd6d798854d92aab961efd9d (diff) | |
parent | 496a05c628d39c981a8f472f16629043d8508808 (diff) |
* fix various -Wall warnings
* make "apt-get build-dep" installed packages marked automatic
by default. This can be changed by setting the value of
APT::Get::Build-Dep-Automatic to false (thanks to Aaron
Haviland, closes: #44874, LP: #248268)
Diffstat (limited to 'apt-pkg/depcache.cc')
-rw-r--r-- | apt-pkg/depcache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index 8d8befbdf..17864c76c 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -269,7 +269,7 @@ bool pkgDepCache::writeStateFile(OpProgress *prog, bool InstalledOnly) ostr.str(string("")); ostr << "Package: " << pkg.Name() << "\nAuto-Installed: 1\n\n"; - fprintf(OutFile,ostr.str().c_str()); + fprintf(OutFile,"%s",ostr.str().c_str()); fprintf(OutFile,"\n"); } } |