reduce some wasted space in dso structure
authorRich Felker <dalias@aerifal.cx>
Wed, 8 Feb 2012 01:29:29 +0000 (20:29 -0500)
committerRich Felker <dalias@aerifal.cx>
Wed, 8 Feb 2012 01:29:29 +0000 (20:29 -0500)
src/ldso/dynlink.c

index 01c7f29..eda0046 100644 (file)
@@ -47,9 +47,9 @@ struct dso
        size_t map_len;
        dev_t dev;
        ino_t ino;
-       int global;
-       int relocated;
-       int constructed;
+       char global;
+       char relocated;
+       char constructed;
        struct dso **deps;
        char *name;
        char buf[];