Frage zu 64bit-portability-issue curses.c:322

"Sascha 'saigkill' Manns" <[email protected]> Sat, 30 Jan 2010 22:31:54 +0100
Newsgroups gmane.linux.suse.programming
Organization openSUSE Marketing Team
Message-ID <[email protected]>
Hallo ihr lieben,

wie manchem bekannt ist, bastel ich gerne mal am Compiler, um 
Erfahrungen zu sammeln.
Jetzt bin ich mal bei netris. Hier kam obige Meldung,.

Die Funktion ist:
ExtFunc void RefreshScreen(void)
{
	static char timeStr[2][32];
	time_t theTime;

	time(&theTime);
	strftime(timeStr[0], 30, "%I:%M %p", localtime(&theTime)); <--Das 
ist die Zeile um die es geht.
	/* Just in case the local curses library sucks */
	if (strcmp(timeStr[0], timeStr[1]))
	{
		move(statusYPos, statusXPos);
		addstr(timeStr[0]);
		strcpy(timeStr[1], timeStr[0]);
	}
	move(boardYPos[0] + 1, boardXPos[0] + 2 * boardWidth[0] + 1);
	refresh();
}
Hat jemand sowas mal gehabt? Bei Google fand ich bisher noch nichts, was 
mich wirklich weiterbrachte...
-- 
Sincerely yours

Sascha Manns			
openSUSE Community & Support Agent
openSUSE Marketing Team

Blog: http://saigkill.wordpress.com

Web: http://www.open-slx.de (openSUSE Box Support German)
Web: http://www.open-slx.com (openSUSE Box Support English)