Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 612384
Collapse All | Expand All

(-)tigcc.orig/sources/ld-tigcc/export/export.c (-3 / +3 lines)
Lines 428-441 Link Here
428
						switch (DestCalc)
428
						switch (DestCalc)
429
						{
429
						{
430
							case CALC_TI92:
430
							case CALC_TI92:
431
								strcpy (Header.Signature, "**TI92**");
431
								strncpy (Header.Signature, "**TI92**", 8);
432
								break;
432
								break;
433
							case CALC_TI89:
433
							case CALC_TI89:
434
								strcpy (Header.Signature, "**TI89**");
434
								strncpy (Header.Signature, "**TI89**", 8);
435
								break;
435
								break;
436
							case CALC_TI92PLUS:
436
							case CALC_TI92PLUS:
437
							case CALC_V200:
437
							case CALC_V200:
438
								strcpy (Header.Signature, "**TI92P*");
438
								strncpy (Header.Signature, "**TI92P*", 8);
439
								break;
439
								break;
440
							default:
440
							default:
441
								Error (NULL, "Unknown calculator.");
441
								Error (NULL, "Unknown calculator.");

Return to bug 612384