Cosmetic changes
authorSebastian Hack <hack@ipd.info.uni-karlsruhe.de>
Thu, 31 Aug 2006 14:33:29 +0000 (14:33 +0000)
committerSebastian Hack <hack@ipd.info.uni-karlsruhe.de>
Thu, 31 Aug 2006 14:33:29 +0000 (14:33 +0000)
[r8153]

ir/adt/bitset.h

index 7a1b828..a3f737e 100644 (file)
@@ -444,12 +444,12 @@ static INLINE void bitset_fprint(FILE *file, const bitset_t *bs)
        const char *prefix = "";
        int i;
 
-       putc('[', file);
+       putc('{', file);
        for(i = bitset_next_set(bs, 0); i != -1; i = bitset_next_set(bs, i + 1)) {
                fprintf(file, "%s%u", prefix, i);
                prefix = ",";
        }
-       putc(']', file);
+       putc('}', file);
 }
 
 static INLINE void bitset_debug_fprint(FILE *file, const bitset_t *bs)