X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yaffs_packedtags2.c;fp=yaffs_packedtags2.c;h=e1d18cc33c683ebc1ba53fc18841b60040b46f84;hp=b103ef632cf2f77f619618d9d195855733ccd8f4;hb=07353dd87a46afc753441028af8f5e8629b13bdc;hpb=1658295946bc589b4d351e75a59bd697630cd9e1 diff --git a/yaffs_packedtags2.c b/yaffs_packedtags2.c index b103ef6..e1d18cc 100644 --- a/yaffs_packedtags2.c +++ b/yaffs_packedtags2.c @@ -62,12 +62,12 @@ static void yaffs_dump_tags2(const struct yaffs_ext_tags *t) static int yaffs_check_tags_extra_packable(const struct yaffs_ext_tags *t) { - if(t->chunk_id != 0 || !t->extra_available) + if (t->chunk_id != 0 || !t->extra_available) return 0; /* Check if the file size is too long to store */ if (t->extra_obj_type == YAFFS_OBJECT_TYPE_FILE && - (t->extra_file_size>> 31) != 0) + (t->extra_file_size >> 31) != 0) return 0; return 1; }