Re: [PATCH] virtiofsd: use g_date_time_get_microsecond to get subsecond

2022-08-24 Thread Stefan Hajnoczi
On Thu, Aug 18, 2022 at 02:46:19PM -0400, Yusuke Okada wrote: > From: Yusuke Okada > > The "%f" specifier in g_date_time_format() is only available in glib > 2.65.2 or later. If combined with older glib, the function returns null > and the timestamp displayed as "(null)". > > For backward compat

Re: [PATCH] virtiofsd: use g_date_time_get_microsecond to get subsecond

2022-08-24 Thread Dr. David Alan Gilbert
* Yusuke Okada (yokada@gmail.com) wrote: > From: Yusuke Okada > > The "%f" specifier in g_date_time_format() is only available in glib > 2.65.2 or later. If combined with older glib, the function returns null > and the timestamp displayed as "(null)". Well spotted; thanks for the patch. I no