This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH v3 1/7] Add __vfscanf_internal and __vfwscanf_internal with flags arguments.


On Thu, 15 Nov 2018, Gabriel F. T. Gomes wrote:

>-	  if (s->_flags2 & _IO_FLAGS2_SCANF_STD)
>+	  if (__glibc_likely ((mode_flags & SCANF_ISOC99_A) == 1))

This should have been:

  if (__glibc_likely ((mode_flags & SCANF_ISOC99_A) != 0))

Fixed locally.  Sorry about that.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]