diff options
author | Michael Schroeder <mls@suse.de> | 2009-05-26 10:59:14 +0200 |
---|---|---|
committer | Michael Schroeder <mls@suse.de> | 2009-05-26 10:59:14 +0200 |
commit | e38c7e94df5cf9a3efd4e3b4bab6bddc1214a2b9 (patch) | |
tree | 2a040d44724d46fcd99f2339e751177438cd18a8 /src/bitmap.c | |
parent | 77c11828a8c7217e43f00d8f437ffdf0d1f8a4c8 (diff) | |
download | libsolv-e38c7e94df5cf9a3efd4e3b4bab6bddc1214a2b9.tar.gz libsolv-e38c7e94df5cf9a3efd4e3b4bab6bddc1214a2b9.tar.bz2 libsolv-e38c7e94df5cf9a3efd4e3b4bab6bddc1214a2b9.zip |
- split problem handling from solver.c
Diffstat (limited to 'src/bitmap.c')
-rw-r--r-- | src/bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitmap.c b/src/bitmap.c index f7ee3dd..c94afe0 100644 --- a/src/bitmap.c +++ b/src/bitmap.c @@ -33,7 +33,7 @@ map_free(Map *m) // copy t <- s void -map_clone(Map *t, Map *s) +map_init_clone(Map *t, Map *s) { t->size = s->size; t->map = sat_malloc(s->size); |