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