|
| From: | David Ayers |
| Subject: | [bug #19503] PostgreSQLChannel.m/newValueForDateTypeLengthAttribute milliseconds problem |
| Date: | Mon, 16 Apr 2007 07:34:17 +0000 |
| User-agent: | Mozilla/5.0 (X11; U; Linux i686; de-DE; rv:1.7.10) Gecko/20070116 Firefox/1.0.4 (Debian package 1.0.4-2sarge15) |
Update of bug #19503 (project gnustep):
Status: None => Fixed
Open/Closed: Open => Closed
_______________________________________________________
Follow-up Comment #1:
Thanks... I the millisecond value was replacing the second value and wasn't
set itself. Fixed in SVN.
I'm still a but surprised that the compiler doesn't optimize:
if (localuint > 2)
{ /*don't alter localuint */ }
if (localuint > 5)
{ /*don't alter localuint */ }
if (localuint > 9)
{ /*don't alter localuint */ }
to:
if (localuint > 2)
{ /*don't alter localuint */
if (localuint > 5)
{ /*don't alter localuint */
if (localuint > 9)
{ /*don't alter localuint */ }
}
}
by itself but I'm not finding the time to investigate so changed it as you
suggested (but didn't update the indetation yet as I may still look into this
later.
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?19503>
_______________________________________________
Nachricht geschickt von/durch Savannah
http://savannah.gnu.org/
| [Prev in Thread] | Current Thread | [Next in Thread] |