diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2007-07-14 13:02:52 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2007-07-14 13:02:52 -0300 |
commit | 29925560efccf3f5801a122f6061e2cf2046c955 (patch) | |
tree | ef59a50db5c46eeff6338db285e158bfe01f2b64 /apt-pkg/contrib | |
parent | 4ac3c092c5c59476ec1ed34a93dffecdf816fae5 (diff) | |
parent | e53ee4caf5ecf882e3df2665a8e1c2a9e6da6fb0 (diff) |
Merge fixes branch.
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/configuration.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/configuration.cc b/apt-pkg/contrib/configuration.cc index 7914bd07b..3109fd7a5 100644 --- a/apt-pkg/contrib/configuration.cc +++ b/apt-pkg/contrib/configuration.cc @@ -507,7 +507,7 @@ bool ReadConfigFile(Configuration &Conf,const string &FName,bool AsSectional, CurLine++; // This should be made to work instead, but this is better than looping if (F.fail() && !F.eof()) - return _error->Error(_("Line %d too long (max %lu)"), CurLine, sizeof(Buffer)); + return _error->Error(_("Line %d too long (max %u)"), CurLine, sizeof(Buffer)); _strtabexpand(Buffer,sizeof(Buffer)); _strstrip(Buffer); |