Author: nbd Date: 2015-09-11 18:33:12 +0200 (Fri, 11 Sep 2015) New Revision: 46858
Modified: trunk/target/linux/generic/files/fs/yaffs2/yaffs_vfs.c Log: yaffs2: remove __TIME__ __DATE__ macros prevent compiler errors with gcc 4.9 increase reproducibility Signed-off-by: Dirk Neukirchen <[email protected]> Modified: trunk/target/linux/generic/files/fs/yaffs2/yaffs_vfs.c =================================================================== --- trunk/target/linux/generic/files/fs/yaffs2/yaffs_vfs.c 2015-09-11 16:32:58 UTC (rev 46857) +++ trunk/target/linux/generic/files/fs/yaffs2/yaffs_vfs.c 2015-09-11 16:33:12 UTC (rev 46858) @@ -3250,7 +3250,7 @@ if (step == 0) buf += sprintf(buf, - "Multi-version YAFFS built:" __DATE__ " " __TIME__ + "Multi-version YAFFS." "\n"); else if (step == 1) buf += sprintf(buf, "\n"); @@ -3601,7 +3601,7 @@ struct file_system_to_install *fsinst; yaffs_trace(YAFFS_TRACE_ALWAYS, - "yaffs built " __DATE__ " " __TIME__ " Installing."); + "yaffs Installing."); mutex_init(&yaffs_context_lock); @@ -3642,7 +3642,7 @@ struct file_system_to_install *fsinst; yaffs_trace(YAFFS_TRACE_ALWAYS, - "yaffs built " __DATE__ " " __TIME__ " removing."); + "yaffs removing."); remove_proc_entry("yaffs", YPROC_ROOT); _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
