join selection strings with ' + ', not ' | '
authorMichael Schroeder <mls@suse.de>
Mon, 29 Oct 2012 12:46:36 +0000 (13:46 +0100)
committerMichael Schroeder <mls@suse.de>
Mon, 29 Oct 2012 12:46:36 +0000 (13:46 +0100)
src/solverdebug.c

index 130e04f..a756d78 100644 (file)
@@ -938,7 +938,7 @@ pool_selection2str(Pool *pool, Queue *selection, Id flagmask)
     {
       Id how = selection->elements[i];
       if (*s)
-       s = pool_tmpappend(pool, s, " | ", 0);
+       s = pool_tmpappend(pool, s, " + ", 0);
       s2 = solver_select2str(pool, how & SOLVER_SELECTMASK, selection->elements[i + 1]);
       s = pool_tmpappend(pool, s, s2, 0);
       pool_freetmpspace(pool, s2);