diff options
author | Michael Schroeder <mls@suse.de> | 2007-11-28 13:48:06 +0000 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2007-11-28 13:48:06 +0000 |
commit | 8dec17493f11fd42ba2a73416bbe3b6482c56712 (patch) | |
tree | 21da6b5d17b00612c28ccc34f24a3e3ca99679a4 /src/poolid.c | |
parent | 9f9f1427010705d78819e73961c0ead8879a7bd6 (diff) | |
download | libsolv-8dec17493f11fd42ba2a73416bbe3b6482c56712.tar.gz libsolv-8dec17493f11fd42ba2a73416bbe3b6482c56712.tar.bz2 libsolv-8dec17493f11fd42ba2a73416bbe3b6482c56712.zip |
- fix false friend
- fix enum
Diffstat (limited to 'src/poolid.c')
-rw-r--r-- | src/poolid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/poolid.c b/src/poolid.c index ef76a4a..7165b8a 100644 --- a/src/poolid.c +++ b/src/poolid.c @@ -30,7 +30,7 @@ str2id(Pool *pool, const char *str, int create) int old_nstrings = pool->ss.nstrings; Id id = stringpool_str2id (&pool->ss, str, create); /* If we changed the ID->string relations we need to get rid of an - eventually existing provides lookup cache. */ + existing provides lookup cache. */ if (old_nstrings != pool->ss.nstrings) pool_freewhatprovides(pool); return id; |