cvs commit: src/sys/kern kern_sig.c

John Baldwin jhb at FreeBSD.org
Fri Jul 16 14:00:51 PDT 2004


jhb         2004-07-16 21:00:51 UTC

  FreeBSD src repository

  Modified files:
    sys/kern             kern_sig.c 
  Log:
  Improve readability a bit by changing some code at the end of a function
  that did:
  
          if (foo)
                  return
          else
                  blah
  
  to just do the simpler
  
          if (!foo)
                  blah
  
  instead.
  
  Revision  Changes    Path
  1.285     +2 -6      src/sys/kern/kern_sig.c


More information about the cvs-src mailing list