1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715
|
Description: correct some typos
Author: Jörg Frings-Fürst <debian@jff-webhosting.net>
Last-Update: 2017-08-26
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: trunk/spectro/dispcal.c
===================================================================
--- trunk.orig/spectro/dispcal.c
+++ trunk/spectro/dispcal.c
@@ -1985,7 +1985,7 @@ int main(int argc, char *argv[]) {
/* Serial port flow control */
} else if (argv[fa][1] == 'W') {
fa = nfa;
- if (na == NULL) usage(0,"Paramater expected following -W");
+ if (na == NULL) usage(0,"Parameter expected following -W");
if (na[0] == 'n' || na[0] == 'N')
fc = fc_None;
else if (na[0] == 'h' || na[0] == 'H')
@@ -2008,13 +2008,13 @@ int main(int argc, char *argv[]) {
/* Black point correction amount */
} else if (argv[fa][1] == 'k') {
fa = nfa;
- if (na == NULL) usage(0,"Paramater expected following -k");
+ if (na == NULL) usage(0,"Parameter expected following -k");
bkcorrect = atof(na);
if (bkcorrect < 0.0 || bkcorrect > 1.0) usage(0,"-k parameter must be between 0.0 and 1.0");
/* Neutral blend rate (power) */
} else if (argv[fa][1] == 'A') {
fa = nfa;
- if (na == NULL) usage(0,"Paramater expected following -A");
+ if (na == NULL) usage(0,"Parameter expected following -A");
x.nbrate = atof(na);
if (x.nbrate < 0.05 || x.nbrate > 20.0) usage(0,"-A parameter must be between 0.05 and 20.0");
/* Black brightness */
@@ -2047,7 +2047,7 @@ int main(int argc, char *argv[]) {
/* COM port */
} else if (argv[fa][1] == 'c') {
fa = nfa;
- if (na == NULL) usage(0,"Paramater expected following -c");
+ if (na == NULL) usage(0,"Parameter expected following -c");
comport = atoi(na);
if (comport < 1 || comport > 50) usage(0,"-c parameter %d out of range",comport);
@@ -3114,7 +3114,7 @@ int main(int argc, char *argv[]) {
/* Black level adjustment */
/* Due to the possibility of the channel offsets not being even, */
/* we use the largest of the XYZ values after they have been */
- /* scaled to be even acording to the white XYZ balance. */
+ /* scaled to be even according to the white XYZ balance. */
/* It's safer to set the black level a bit low, and then the */
/* calibration curves can bump the low ones up. */
if (c == '1') {
Index: trunk/spectro/spotread.c
===================================================================
--- trunk.orig/spectro/spotread.c
+++ trunk/spectro/spotread.c
@@ -517,7 +517,7 @@ int main(int argc, char *argv[]) {
/* COM port */
} else if (argv[fa][1] == 'c') {
fa = nfa;
- if (na == NULL) usage("Paramater expected following -c");
+ if (na == NULL) usage("Parameter expected following -c");
{
comport = atoi(na);
if (comport < 1 || comport > 40) usage("-c parameter %d out of range",comport);
@@ -526,7 +526,7 @@ int main(int argc, char *argv[]) {
/* Display type */
} else if (argv[fa][1] == 'y') {
fa = nfa;
- if (na == NULL) usage("Paramater expected following -y");
+ if (na == NULL) usage("Parameter expected following -y");
ditype = na[0];
if (ditype == '_' && na[1] != '\000')
ditype = ditype << 8 | na[1];
@@ -536,7 +536,7 @@ int main(int argc, char *argv[]) {
} else if (argv[fa][1] == 'I') {
fa = nfa;
- if (na == NULL) usage("Paramater expected following -I");
+ if (na == NULL) usage("Parameter expected following -I");
if (strcmp(na, "A") == 0
|| strcmp(na, "M0") == 0) {
tillum_set = spec = 1;
@@ -584,7 +584,7 @@ int main(int argc, char *argv[]) {
/* Spectral Illuminant type for XYZ computation */
} else if (argv[fa][1] == 'i') {
fa = nfa;
- if (na == NULL) usage("Paramater expected following -i");
+ if (na == NULL) usage("Parameter expected following -i");
if (strcmp(na, "A") == 0) {
illum_set = spec = 1;
illum = icxIT_A;
@@ -639,7 +639,7 @@ int main(int argc, char *argv[]) {
/* Spectral Observer type */
} else if (argv[fa][1] == 'Q') {
fa = nfa;
- if (na == NULL) usage("Paramater expected following -Q");
+ if (na == NULL) usage("Parameter expected following -Q");
if (strcmp(na, "1931_2") == 0) { /* Classic 2 degree */
obType = icxOT_CIE_1931_2;
} else if (strcmp(na, "1964_10") == 0) { /* Classic 10 degree */
@@ -728,7 +728,7 @@ int main(int argc, char *argv[]) {
/* Filter configuration */
} else if (argv[fa][1] == 'F') {
fa = nfa;
- if (na == NULL) usage("Paramater expected following -F");
+ if (na == NULL) usage("Parameter expected following -F");
if (na[0] == 'n' || na[0] == 'N')
fe = inst_opt_filter_none;
else if (na[0] == 'p' || na[0] == 'P')
@@ -743,13 +743,13 @@ int main(int argc, char *argv[]) {
/* Extra filter compensation file */
} else if (argv[fa][1] == 'E') {
fa = nfa;
- if (na == NULL) usage("Paramater expected following -E");
+ if (na == NULL) usage("Parameter expected following -E");
strncpy(filtername,na,MAXNAMEL-1); filtername[MAXNAMEL-1] = '\000';
/* XRGA conversion */
} else if (argv[fa][1] == 'A') {
fa = nfa;
- if (na == NULL) usage("Paramater expected following -A");
+ if (na == NULL) usage("Parameter expected following -A");
if (na[0] == 'N')
calstd = xcalstd_none;
else if (na[0] == 'A')
@@ -759,7 +759,7 @@ int main(int argc, char *argv[]) {
else if (na[0] == 'G')
calstd = xcalstd_gmdi;
else
- usage("Paramater after -A '%c' not recognized",na[0]);
+ usage("Parameter after -A '%c' not recognized",na[0]);
/* Show Yxy */
} else if (argv[fa][1] == 'x') {
@@ -1513,7 +1513,7 @@ int main(int argc, char *argv[]) {
/* Or something is wrong with instrument capabilities */
} else {
- printf("\nNo reasonable trigger mode avilable for this instrument\n");
+ printf("\nNo reasonable trigger mode available for this instrument\n");
it->del(it);
return -1;
}
Index: trunk/spectro/colorhug.c
===================================================================
--- trunk.orig/spectro/colorhug.c
+++ trunk/spectro/colorhug.c
@@ -213,7 +213,7 @@ colorhug_command(colorhug *p,
a1logd(p->log,8,"colorhug_command: Read %d bytes and %d read\n",xrbytes,rbytes);
if (rbytes >= 2) {
- a1logd(p->log,6,"colorhug_command: recieved cmd '%s' error '%s' args '%s'\n",
+ a1logd(p->log,6,"colorhug_command: received cmd '%s' error '%s' args '%s'\n",
inst_desc(buf[1]),
colorhug_interp_error((inst *) p, buf[0]),
icoms_tohex(buf, rbytes - 2));
Index: trunk/spectro/dispwin.c
===================================================================
--- trunk.orig/spectro/dispwin.c
+++ trunk/spectro/dispwin.c
@@ -5238,7 +5238,7 @@ int ddebug /* >0 to print debug sta
vinfo = XGetVisualInfo(p->mydisplay, VisualIDMask, &template, &nitems);
if (nitems < 1) {
- debugr2((errout,"new_dispwin: Failed to get XGetVisualInfo of defalt Visual\n"));
+ debugr2((errout,"new_dispwin: Failed to get XGetVisualInfo of default Visual\n"));
dispwin_del(p);
return NULL;
}
Index: trunk/spectro/dtp51.c
===================================================================
--- trunk.orig/spectro/dtp51.c
+++ trunk/spectro/dtp51.c
@@ -681,7 +681,7 @@ dtp51_interp_error(inst *pp, int ec) {
case DTP51_INVALID_STEP:
return "Invalid step";
case DTP51_NO_DATA_AVAILABLE:
- return "No data availble";
+ return "No data available";
case DTP51_LAMP_MARGINAL:
return "Lamp marginal";
case DTP51_LAMP_FAILURE:
Index: trunk/spectro/dtp92.c
===================================================================
--- trunk.orig/spectro/dtp92.c
+++ trunk/spectro/dtp92.c
@@ -358,7 +358,7 @@ dtp92_init_coms(inst *pp, baud_rate br,
if ((ev = dtp92_command(p, tbuf, buf, MAX_MES_SIZE, 6.0)) != inst_ok)
error("Writing offset drift value failed");
else
- printf("Writing offset drift value suceeded!\n");
+ printf("Writing offset drift value succeeded!\n");
} else {
printf("No command written\n");
}
@@ -372,7 +372,7 @@ dtp92_init_coms(inst *pp, baud_rate br,
return inst_coms_fail;
}
- a1logd(p->log, 2, "dtp92_init_coms: init coms has suceeded\n");
+ a1logd(p->log, 2, "dtp92_init_coms: init coms has succeeded\n");
p->gotcoms = 1;
return inst_ok;
@@ -942,7 +942,7 @@ dtp92_interp_error(inst *pp, int ec) {
case DTP92_NO_DATA_AVAILABLE:
return "No data available";
case DTP92_MISSING_PARAMETER:
- return "Paramter is missing";
+ return "Parameter is missing";
case DTP92_CALIBRATION_DENIED:
return "Invalid calibration enable code";
case DTP92_NEEDS_OFFSET_CAL:
Index: trunk/spectro/hidio.c
===================================================================
--- trunk.orig/spectro/hidio.c
+++ trunk/spectro/hidio.c
@@ -742,7 +742,7 @@ icoms_hid_read(icoms *p,
{
unsigned char *rbuf2;
- /* Create a copy of the data recieved with one more byte */
+ /* Create a copy of the data received with one more byte */
if ((rbuf2 = malloc(bsize + 1)) == NULL) {
a1loge(p->log, ICOM_SYS, "icoms_hid_read: malloc failed\n");
return ICOM_SYS;
Index: trunk/spectro/huey.c
===================================================================
--- trunk.orig/spectro/huey.c
+++ trunk/spectro/huey.c
@@ -82,7 +82,7 @@ static int icoms2huey_err(int se, int to
/* i1Display command codes */
/* B = byte (8bit), S = short (16bit), W = word (32bit), A = string */
/* U = unused byte, - = no arguments/results */
-/* The is a 7 byte command buffer and 6 response recieve buffer. */
+/* The is a 7 byte command buffer and 6 response receive buffer. */
/* :2 means the read is from a second 8 byte ep x81 read. */
/* cbuf[-] is command byte */
/* rbuf[-2] is continuation byte */
Index: trunk/spectro/i1pro_imp.c
===================================================================
--- trunk.orig/spectro/i1pro_imp.c
+++ trunk/spectro/i1pro_imp.c
@@ -2780,7 +2780,7 @@ int *pinstmsec) { /* Return instrument l
break;
}
- a1logd(p->log, 2, "i1pro_meas_delay: stoped at sample %d time %f\n",i,samp[i].sec);
+ a1logd(p->log, 2, "i1pro_meas_delay: stopped at sample %d time %f\n",i,samp[i].sec);
/* Compute overall delay */
dispmsec = (int)(samp[i].sec * 1000.0 + 0.5); /* Display update time */
@@ -3233,7 +3233,7 @@ i1pro_code i1pro_imp_measure(
}
}
- a1logd(p->log,3,"i1pro_imp_measure sucessful return\n");
+ a1logd(p->log,3,"i1pro_imp_measure successful return\n");
if (user_trig)
return I1PRO_USER_TRIG;
return ev;
@@ -3895,7 +3895,7 @@ i1pro_code i1pro_imp_meas_refrate(
}
}
} else {
- a1logd(p->log, 3, "Not enough tries suceeded to determine refresh rate\n");
+ a1logd(p->log, 3, "Not enough tries succeeded to determine refresh rate\n");
}
return I1PRO_RD_NOREFR_FOUND;
@@ -3990,7 +3990,7 @@ i1pro_code i1pro_restore_refspot_cal(i1p
return I1PRO_OK;
}
- /* We've sucessfully restored the dark calibration */
+ /* We've successfully restored the dark calibration */
s->dark_valid = 1;
s->ddate = m->caldate;
@@ -4035,7 +4035,7 @@ i1pro_code i1pro_restore_refspot_cal(i1p
return I1PRO_OK;
}
- /* We've sucessfully restored the calibration */
+ /* We've successfully restored the calibration */
s->cal_valid = 1;
s->cfdate = m->caldate;
@@ -4391,7 +4391,7 @@ i1pro_code i1pro_save_calibration(i1pro
write_doubles(&x, fp, s->idark_data[3]-1, m->nraw+1);
}
- a1logd(p->log,3,"nbytes = %d, Checkum = 0x%x\n",x.nbytes,x.chsum);
+ a1logd(p->log,3,"nbytes = %d, Checksum = 0x%x\n",x.nbytes,x.chsum);
write_ints(&x, fp, (int *)&x.chsum, 1);
if (fclose(fp) != 0)
Index: trunk/spectro/madvrwin.c
===================================================================
--- trunk.orig/spectro/madvrwin.c
+++ trunk/spectro/madvrwin.c
@@ -603,7 +603,7 @@ int ii = 0;
}
#endif
- debugr("new_madvrwin: return sucessfully\n");
+ debugr("new_madvrwin: return successfully\n");
return p;
}
Index: trunk/spectro/ss.c
===================================================================
--- trunk.orig/spectro/ss.c
+++ trunk/spectro/ss.c
@@ -376,7 +376,7 @@ ss_init_coms(inst *pp, baud_rate br, flo
p->gotcoms = 1;
- a1logd(p->log, 2, "ss_init_coms: init coms has suceeded\n");
+ a1logd(p->log, 2, "ss_init_coms: init coms has succeeded\n");
return inst_ok;
}
@@ -1745,7 +1745,7 @@ ss_interp_error(inst *pp, int ec) {
case ss_et_FilterOutOfPos:
return "Filter wheel out of position";
case ss_et_SendTimeout:
- return "Data transmission timout";
+ return "Data transmission timeout";
case ss_et_DriveError:
return "Data drive defect";
case ss_et_MeasDisabled:
@@ -1865,7 +1865,7 @@ ss_interp_error(inst *pp, int ec) {
case ss_et_BadHexEncoding:
return "Message received from instrument has bad Hex encoding";
case ss_et_RecBufferOverun:
- return "Message received from instrument would overflow recieve buffer";
+ return "Message received from instrument would overflow receive buffer";
default:
return "Unknown error code";
}
Index: trunk/spectro/ss_imp.c
===================================================================
--- trunk.orig/spectro/ss_imp.c
+++ trunk/spectro/ss_imp.c
@@ -217,7 +217,7 @@ static int h2b(ss *p, char c) {
return 0;
}
-/* Return the first enum from the recieve buffer without removing it. */
+/* Return the first enum from the receive buffer without removing it. */
int ss_peek_ans(ss *p) {
int rv;
Index: trunk/spectro/webwin.c
===================================================================
--- trunk.orig/spectro/webwin.c
+++ trunk/spectro/webwin.c
@@ -411,7 +411,7 @@ int ddebug /* >0 to print debug sta
msec_sleep(50);
}
- debugr("new_webwin: return sucessfully\n");
+ debugr("new_webwin: return successfully\n");
return p;
}
Index: trunk/xicc/cv.c
===================================================================
--- trunk.orig/xicc/cv.c
+++ trunk/xicc/cv.c
@@ -102,7 +102,7 @@ main(int argc, char *argv[]) {
printf("There are %d parameters:\n",np); fflush(stdout);
for (i = 0; i < np; i++) {
- printf("Paramter %d = %f\n",i, params[i]); fflush(stdout);
+ printf("Parameter %d = %f\n",i, params[i]); fflush(stdout);
}
/* Display the result */
Index: trunk/spectro/ss_imp.h
===================================================================
--- trunk.orig/spectro/ss_imp.h
+++ trunk/spectro/ss_imp.h
@@ -723,7 +723,7 @@ void ss_add_string(struct _ss *p, char *
/* - - - - - - - - - - - - - - - - - - - - - */
/* ANSWER: */
-/* Return the first enum from the recieve buffer without removing it. */
+/* Return the first enum from the receive buffer without removing it. */
int ss_peek_ans(struct _ss *p);
/* Remove a Spectrolino answer enum from the revieve buffer, */
Index: trunk/imdi/cctiff.c
===================================================================
--- trunk.orig/imdi/cctiff.c
+++ trunk/imdi/cctiff.c
@@ -36,7 +36,7 @@
Add flag to ignore inkname mismatches.
- Should add support for transfering any extra alpha
+ Should add support for transferring any extra alpha
planes from input to output, rather than simply ignoring them.
@@ -1952,11 +1952,11 @@ main(int argc, char *argv[]) {
if (wh != NULL) {
printf("Output TIFF file '%s'\n",out_name);
- printf("Ouput raster file ICC colorspace is %s\n",icm2str(icmColorSpaceSignature,su.outs));
+ printf("Output raster file ICC colorspace is %s\n",icm2str(icmColorSpaceSignature,su.outs));
printf("Output TIFF file photometric is %s\n",Photometric2str(wphotometric));
} else {
printf("Output JPEG file '%s'\n",out_name);
- printf("Ouput raster file ICC colorspace is %s\n",icm2str(icmColorSpaceSignature,su.outs));
+ printf("Output raster file ICC colorspace is %s\n",icm2str(icmColorSpaceSignature,su.outs));
printf("Output JPEG file colorspace is %s\n",JPEG_cspace2str(wj.jpeg_color_space));
if (wdesc != NULL)
printf("Output raster file description: '%s'\n",wdesc);
Index: trunk/imdi/imdi.h
===================================================================
--- trunk.orig/imdi/imdi.h
+++ trunk/imdi/imdi.h
@@ -38,7 +38,7 @@ struct _imdi {
/* Note that once an imdi is created, multiple can call interp() without */
/* interfering with each other, allowing parallel execution. */
- void (*interp)(struct _imdi *s, void **outp, int outst, /* Ouput pointers and stride */
+ void (*interp)(struct _imdi *s, void **outp, int outst, /* Output pointers and stride */
void **inp, int inst, /* Input pointers and stride */
unsigned int npixels); /* Number of pixels */
Index: trunk/spectro/munki_imp.c
===================================================================
--- trunk.orig/spectro/munki_imp.c
+++ trunk/spectro/munki_imp.c
@@ -1905,7 +1905,7 @@ int *pinstmsec) { /* Return instrumen
break;
}
- a1logd(p->log, 2, "munki_meas_delay: stoped at sample %d time %f\n",i,samp[i].sec);
+ a1logd(p->log, 2, "munki_meas_delay: stopped at sample %d time %f\n",i,samp[i].sec);
/* Compute overall delay and subtract patch change delay */
dispmsec = (int)(samp[i].sec * 1000.0 + 0.5);
@@ -2386,7 +2386,7 @@ munki_code munki_imp_measure(
if (nvals > 0)
vals[0].duration = duration; /* Possible flash duration */
- a1logd(p->log,3,"munki_imp_measure sucessful return\n");
+ a1logd(p->log,3,"munki_imp_measure successful return\n");
if (user_trig)
return MUNKI_USER_TRIG;
return ev;
@@ -3047,7 +3047,7 @@ munki_code munki_imp_meas_refrate(
}
}
} else {
- a1logd(p->log, 3, "Not enough tries suceeded to determine refresh rate\n");
+ a1logd(p->log, 3, "Not enough tries succeeded to determine refresh rate\n");
}
return MUNKI_RD_NOREFR_FOUND;
@@ -3262,7 +3262,7 @@ munki_code munki_save_calibration(munki
write_doubles(&x, fp, s->idark_data[3]-1, m->nraw+1);
}
- a1logd(p->log,3,"Checkum = 0x%x\n",x.chsum);
+ a1logd(p->log,3,"Checksum = 0x%x\n",x.chsum);
write_ints(&x, fp, (int *)&x.chsum, 1);
if (fclose(fp) != 0)
@@ -6429,7 +6429,7 @@ munki_code munki_create_hr(munki *p, int
int i, j, jj, k, cx, sx;
munki_fc coeff[40][16]; /* Existing filter cooefficients */
int nwav1; /* Number of filters */
- double wl_short1, wl_long1; /* Ouput wavelength of first and last filters */
+ double wl_short1, wl_long1; /* Output wavelength of first and last filters */
double wl_step1;
munki_xp xp[41]; /* Crossover points each side of filter */
munki_code ev = MUNKI_OK;
@@ -8737,7 +8737,7 @@ munki_readmeasurement(
top = extra + m->c_inttime * nmeas;
- a1logd(p->log,2,"munki_readmeasurement: inummeas %d, scanflag %d, address %p bsize 0x%x, timout %f\n",inummeas, scanflag, buf, bsize, top);
+ a1logd(p->log,2,"munki_readmeasurement: inummeas %d, scanflag %d, address %p bsize 0x%x, timeout %f\n",inummeas, scanflag, buf, bsize, top);
for (;;) {
int size; /* number of bytes to read */
Index: trunk/target/printtarg.c
===================================================================
--- trunk.orig/target/printtarg.c
+++ trunk/target/printtarg.c
@@ -345,7 +345,7 @@ static void ps_setcolor(trend *ss, xcal
} else if (c->altrep == 6) { /* DeviceN */
gen_ncolor(s, c);
} else {
- error("Device white encoding not approproate!");
+ error("Device white encoding not appropriate!");
}
} else if (c->nmask == ICX_K) {
@@ -362,7 +362,7 @@ static void ps_setcolor(trend *ss, xcal
} else if (c->altrep == 3) { /* DeviceN */
gen_ncolor(s, c);
} else {
- error("Device black encoding not approproate!");
+ error("Device black encoding not appropriate!");
}
} else if (c->nmask == ICX_CMY) {
@@ -377,7 +377,7 @@ static void ps_setcolor(trend *ss, xcal
} else if (c->altrep == 8) { /* DeviceN */
gen_ncolor(s, c);
} else {
- error("Device CMY encoding not approproate!");
+ error("Device CMY encoding not appropriate!");
}
} else if (c->nmask == ICX_RGB || c->nmask == ICX_IRGB) {
@@ -749,7 +749,7 @@ static void tiff_setcolor(trend *ss, xca
} else if (c->altrep == 6) { /* DeviceN single channel */
s->c[0] = cdev[0];
} else {
- error("Device white encoding not approproate!");
+ error("Device white encoding not appropriate!");
}
} else if (c->nmask == ICX_K) {
@@ -765,7 +765,7 @@ static void tiff_setcolor(trend *ss, xca
} else if (c->altrep == 3) { /* DeviceN single channel */
s->c[0] = cdev[0];
} else {
- error("Device black encoding not approproate!");
+ error("Device black encoding not appropriate!");
}
} else if (c->nmask == ICX_CMY) {
@@ -783,7 +783,7 @@ static void tiff_setcolor(trend *ss, xca
s->c[1] = cdev[1];
s->c[2] = cdev[2];
} else {
- error("Device CMY encoding not approproate!");
+ error("Device CMY encoding not appropriate!");
}
} else {
@@ -968,7 +968,7 @@ static trend *new_tiff_trend(
nc = icx_noofinks(nmask);
nc = 1;
} else {
- error("Device white encoding not approproate");
+ error("Device white encoding not appropriate");
}
} else if (nmask == ICX_K) {
@@ -984,7 +984,7 @@ static trend *new_tiff_trend(
nc = icx_noofinks(nmask);
nc = 1;
} else {
- error("Device black encoding not approproate");
+ error("Device black encoding not appropriate");
}
} else if (nmask == ICX_RGB || nmask == ICX_IRGB) {
@@ -1002,7 +1002,7 @@ static trend *new_tiff_trend(
csp = ncol_2d;
nc = icx_noofinks(nmask);
} else {
- error("Device CMY encoding not approproate");
+ error("Device CMY encoding not appropriate");
}
} else if (nmask == ICX_CMYK) {
@@ -2209,7 +2209,7 @@ int *p_npat /* Return number of patche
} else {
- error("Unsupported intrument type");
+ error("Unsupported instrument type");
}
/* Compute page limits */
@@ -2255,7 +2255,7 @@ int *p_npat /* Return number of patche
tidpad = (pprow - tidminp)/2; /* Center TID */
if (pprow < (1+nextrap))
- error("Paper size not long enought for a single patch per row!");
+ error("Paper size not long enough for a single patch per row!");
*ptpprow = tpprow = pprow - nextrap; /* Test sample patches per row */
@@ -2953,7 +2953,7 @@ char *argv[];
double sscale = 1.0; /* Spacer size scale */
int rand = 1;
int qbits = 0; /* Quantization bits */
- int oft = 0; /* Ouput File type, 0 = PS, 1 = EPS , 2 = TIFF */
+ int oft = 0; /* Output File type, 0 = PS, 1 = EPS , 2 = TIFF */
int nocups = 0; /* Supress CUPS PS/EPS job ticket */
depth2d tiffdpth = bpc8_2d; /* TIFF pixel depth */
double tiffres = 100.0; /* TIFF resolution in DPI */
Index: trunk/gamut/nearsmth.c
===================================================================
--- trunk.orig/gamut/nearsmth.c
+++ trunk/gamut/nearsmth.c
@@ -263,7 +263,7 @@ double dxratio /* Depth expansion ratio
double va, vr, vd, vv = 0.0;
/* Absolute, Delta E^2 between test point and destination closest */
- /* aodv is already positioned acording to the LCh weights, */
+ /* aodv is already positioned according to the LCh weights, */
/* so weight as per average of these */
a_o = w->a.o;
va = wdesq(dtp, aodv, a_o, a_o, a_o, SUM_POW);
@@ -4067,7 +4067,7 @@ static void create_influence_plot(nearsm
swdiag = new_rspl(RSPL_NOFLAGS, 3, 3); /* Allocate 3D -> 3D */
swdiag->fit_rspl(swdiag, RSPL_NOFLAGS, fpnts, nmpts, NULL, NULL, gres, NULL, NULL, 1.0, avgdev, NULL);
- /* Now create a plot of the sci_gam with the vertexes colored acording to the */
+ /* Now create a plot of the sci_gam with the vertexes colored according to the */
/* diagnostic map. */
if ((wrl = new_vrml("sci_gam_wt", 1, vrml_lab)) == NULL) {
fprintf(stderr,"gamut map: new_vrml failed for '%s%s'\n","sci_gam_wt",vrm_ext());
Index: trunk/gamut/nearsmth.h
===================================================================
--- trunk.orig/gamut/nearsmth.h
+++ trunk/gamut/nearsmth.h
@@ -294,7 +294,7 @@ gammapweights *src2, double wgt2,
gammapweights *src3, double wgt3
);
-/* Tweak weights acording to extra cmy cusp flags or rel override */
+/* Tweak weights according to extra cmy cusp flags or rel override */
void tweak_weights(gammapweights out[14], int dst_cmymap, int rel_oride);
#endif /* NEARSMTH_H */
Index: trunk/imdi/cctiffo.c
===================================================================
--- trunk.orig/imdi/cctiffo.c
+++ trunk/imdi/cctiffo.c
@@ -307,7 +307,7 @@ int pmtc
case PHOTOMETRIC_LOGLUV:
return "CIELog2Luv";
}
- sprintf(buf,"Unknonw Tag %d",pmtc);
+ sprintf(buf,"Unknown Tag %d",pmtc);
return buf;
}
Index: trunk/imdi/greytiff.c
===================================================================
--- trunk.orig/imdi/greytiff.c
+++ trunk/imdi/greytiff.c
@@ -131,7 +131,7 @@ int pmtc
case PHOTOMETRIC_LOGLUV:
return "CIELog2Luv";
}
- sprintf(buf,"Unknonw Tag %d",pmtc);
+ sprintf(buf,"Unknown Tag %d",pmtc);
return buf;
}
Index: trunk/link/collink.c
===================================================================
--- trunk.orig/link/collink.c
+++ trunk/link/collink.c
@@ -4899,7 +4899,7 @@ main(int argc, char *argv[]) {
}
if (li.verb)
- printf("Finished verfication\n");
+ printf("Finished verification\n");
printf("Average error = %f%%, peak error = %f%%\n",aerr * 100.0/nerr, perr * 100.0);
printf("Input %f %f %f %f\n",pin[0], pin[1], pin[2], pin[3]);
Index: trunk/profile/printcal.c
===================================================================
--- trunk.orig/profile/printcal.c
+++ trunk/profile/printcal.c
@@ -1294,7 +1294,7 @@ int main(int argc, char *argv[]) {
icmXYZ2Lab(&wht, wp->Lab, wp->XYZ);
}
- /* Sort the channel acording to device value */
+ /* Sort the channel according to device value */
/* For a consistent result for identical device values, */
/* secondary sort by inverse CIE value */
//#define HEAP_COMPARE(A,B) ((A).dev < (B).dev)
Index: trunk/spectro/dispsup.c
===================================================================
--- trunk.orig/spectro/dispsup.c
+++ trunk/spectro/dispsup.c
@@ -722,7 +722,7 @@ static int disprd_read_imp(
scb->serno = p->serno++;
scb->msec = msec_time();
- a1logd(p->log,1, "got reading %f %f %f, transfering to col\n",
+ a1logd(p->log,1, "got reading %f %f %f, transferring to col\n",
val.XYZ[0], val.XYZ[1], val.XYZ[2]);
scb->mtype = val.mtype;
@@ -1242,7 +1242,7 @@ int disprd_ambient(
/* Or something is wrong with instrument capabilities */
} else {
- printf("No reasonable trigger mode avilable for this instrument\n");
+ printf("No reasonable trigger mode available for this instrument\n");
return 2;
}
@@ -2346,7 +2346,7 @@ static int config_inst_displ(disprd *p)
/* Reset key meanings */
inst_reset_uih();
- a1logd(p->log,1,"config_inst_displ suceeded\n");
+ a1logd(p->log,1,"config_inst_displ succeeded\n");
return 0;
}
Index: trunk/gamut/gammap.c
===================================================================
--- trunk.orig/gamut/gammap.c
+++ trunk/gamut/gammap.c
@@ -861,7 +861,7 @@ gammap *new_gammap(
#endif
if (gmi->bph == gmm_clipBP) {
- /* Extend the target black point to accomodate the */
+ /* Extend the target black point to accommodate the */
/* bent or clipped destination space L* range */
if (fabp[0] < dr_cs_bp[0]) {
t = (fabp[0] - dr_cs_wp[0])/(dr_cs_bp[0] - dr_cs_wp[0]);
Index: trunk/profile/profout.c
===================================================================
--- trunk.orig/profile/profout.c
+++ trunk/profile/profout.c
@@ -1105,7 +1105,7 @@ make_output_icc(
if (iccver < icmVersion2_4) {
iccver = icmVersion2_4; /* Need 2.4.0 for Display intents */
if (verb)
- fprintf(verbo,"Bumped ICC version to 2.4.0 to accomodate multiple Display intents\n");
+ fprintf(verbo,"Bumped ICC version to 2.4.0 to accommodate multiple Display intents\n");
}
}
if (wr_icco->set_version(wr_icco, iccver) != 0)
Index: trunk/render/thscreen.c
===================================================================
--- trunk.orig/render/thscreen.c
+++ trunk/render/thscreen.c
@@ -636,7 +636,7 @@ thscreen *new_thscreen(
mrang = 65535.0/(t->oelev - 1.0);
DBG(("new_thscreen() raw modulation rande = %f\n",mrang));
- /* Modify the modulation range to accomodate any level overlap */
+ /* Modify the modulation range to accommodate any level overlap */
if (olap > 0.0 && t->oelev > 2) {
mrang = ((t->oelev - 2.0) * olap * mrang + 65535.0)/(t->oelev - 1.0);
DBG(("new_thscreen() modulation adjusted for overlap = %f\n",mrang));
Index: trunk/xicc/xspect.c
===================================================================
--- trunk.orig/xicc/xspect.c
+++ trunk/xicc/xspect.c
@@ -4509,7 +4509,7 @@ void xspect_plotNp(xspect *sp[MXGPHS], i
/* Given an emission spectrum, set the UV output to the given level. */
/* The shape of the UV is taken from FWA1_stim, and the level is */
/* with respect to the Y of the input spectrum. */
-/* The output range is extended to accomodate the UV wavelengths */
+/* The output range is extended to accommodate the UV wavelengths */
void xsp_setUV(xspect *out, xspect *in, double uvlevel) {
int i, xs, xe;
double ww, avg;
Index: trunk/spectro/ccxxmake.c
===================================================================
--- trunk.orig/spectro/ccxxmake.c
+++ trunk/spectro/ccxxmake.c
@@ -399,7 +399,7 @@ int main(int argc, char *argv[]) {
/* COM port */
} else if (argv[fa][1] == 'c') {
fa = nfa;
- if (na == NULL) usage(0,"Paramater expected following -c");
+ if (na == NULL) usage(0,"Parameter expected following -c");
comno = atoi(na);
if (comno < 1 || comno > 40) usage(0,"-c parameter %d out of range",comno);
@@ -510,7 +510,7 @@ int main(int argc, char *argv[]) {
/* Serial port flow control */
} else if (argv[fa][1] == 'W') {
fa = nfa;
- if (na == NULL) usage(0,"Paramater expected following -W");
+ if (na == NULL) usage(0,"Parameter expected following -W");
if (na[0] == 'n' || na[0] == 'N')
fc = fc_None;
else if (na[0] == 'h' || na[0] == 'H')
@@ -599,7 +599,7 @@ int main(int argc, char *argv[]) {
strcat(outname, doccss ? ".ccss" : ".ccmx");
if (fakeseq && doccss)
- error("Fake CCSS test not implemeted");
+ error("Fake CCSS test not implemented");
printf("\n");
@@ -815,7 +815,7 @@ int main(int argc, char *argv[]) {
refs[i][2] = cols[i][2];
}
gotref = 1;
- warning("Got two colorimetric files - assuming '%s' is the refrence",innames[0]);
+ warning("Got two colorimetric files - assuming '%s' is the reference",innames[0]);
refrmode = -1;
cbid = 0;
Index: trunk/spectro/dispread.c
===================================================================
--- trunk.orig/spectro/dispread.c
+++ trunk/spectro/dispread.c
@@ -414,7 +414,7 @@ int main(int argc, char *argv[]) {
/* COM port */
} else if (argv[fa][1] == 'c') {
fa = nfa;
- if (na == NULL) usage(0,"Paramater expected following -c");
+ if (na == NULL) usage(0,"Parameter expected following -c");
comport = atoi(na);
if (comport < 1 || comport > 50) usage(0,"-c parameter %d out of range",comport);
Index: trunk/spectro/fakeread.c
===================================================================
--- trunk.orig/spectro/fakeread.c
+++ trunk/spectro/fakeread.c
@@ -814,7 +814,7 @@ int main(int argc, char *argv[])
/* We're assuming that the input space has a perfect black point... */
- /* Lookup the ouput black point in XYZ PCS. We're assuming monotonicity.. */
+ /* Lookup the output black point in XYZ PCS. We're assuming monotonicity.. */
bp[0] = bp[1] = bp[2] = 0.0;
oluo->lookup(oluo, bp, bp);
@@ -827,7 +827,7 @@ int main(int argc, char *argv[])
bt1886 == 1 ? egamma : tgamma, bt1886 == 1 ? 1 : 0);
if (verb)
- printf("Gamma Curve: Using ouput black offset proportion %f\n",outoprop);
+ printf("Gamma Curve: Using output black offset proportion %f\n",outoprop);
if (bt1886 == 1) { /* Using effective gamma */
if (verb)
@@ -980,7 +980,7 @@ int main(int argc, char *argv[])
else if (nmask == ICX_K && sep_ins == icSigCmykData)
gfudge = 2;
else if (icx_colorant_comb_match_icc(nmask, sep_ins) == 0) {
- error("Separation ICC device space '%s' dosen't match TI1 '%s'",
+ error("Separation ICC device space '%s' doesn't match TI1 '%s'",
icm2str(icmColorSpaceSignature, sep_ins),
ident); /* Should free(). */
}
@@ -989,7 +989,7 @@ int main(int argc, char *argv[])
if (icc_luo != NULL) {
/* Check if icc is compatible with .ti1 */
if (sep_outs != ins)
- error("ICC device space '%s' dosen't match Separation ICC '%s'",
+ error("ICC device space '%s' doesn't match Separation ICC '%s'",
icm2str(icmColorSpaceSignature, ins),
icm2str(icmColorSpaceSignature, sep_outs));
} else if (mlu != NULL) {
@@ -1014,12 +1014,12 @@ int main(int argc, char *argv[])
else {
if (!revlookup) {
if (icx_colorant_comb_match_icc(nmask, ins) == 0)
- error("ICC device space '%s' dosen't match TI1 '%s'",
+ error("ICC device space '%s' doesn't match TI1 '%s'",
icm2str(icmColorSpaceSignature, ins),
ident); // Should free().
} else {
if (icx_colorant_comb_match_icc(nmask, outs) == 0)
- error("ICC device space '%s' dosen't match TI1 '%s'",
+ error("ICC device space '%s' doesn't match TI1 '%s'",
icm2str(icmColorSpaceSignature, ins),
ident); // Should free().
Index: trunk/profile/invprofcheck.c
===================================================================
--- trunk.orig/profile/invprofcheck.c
+++ trunk/profile/invprofcheck.c
@@ -98,7 +98,7 @@ void usage(void) {
fprintf(stderr," -k Show CIEDE2000 delta E values\n");
fprintf(stderr," -w create %s visualisation (profile%s)\n",vrml_format(),vrml_ext());
fprintf(stderr," -x Use %s axes\n",vrml_format());
- fprintf(stderr," -e Color vectors acording to delta E\n");
+ fprintf(stderr," -e Color vectors according to delta E\n");
fprintf(stderr," profile.icm Profile to check\n");
exit(1);
}
Index: trunk/profile/profcheck.c
===================================================================
--- trunk.orig/profile/profcheck.c
+++ trunk/profile/profcheck.c
@@ -59,7 +59,7 @@ usage(void) {
fprintf(stderr," -w create %s visualisation (iccprofile%s)\n",vrml_format(),vrml_ext());
fprintf(stderr," -x Use %s axes\n",vrml_format());
fprintf(stderr," -m Make %s lines a minimum of 0.5\n",vrml_format());
- fprintf(stderr," -e Color vectors acording to delta E\n");
+ fprintf(stderr," -e Color vectors according to delta E\n");
fprintf(stderr," -h Plot a histogram of delta E's\n");
fprintf(stderr," -s Sort output by delta E\n");
fprintf(stderr," -P N.NN Create a pruned .ti3 with points less or equal to N.NN delta E\n");
Index: trunk/spectro/ccwin.c
===================================================================
--- trunk.orig/spectro/ccwin.c
+++ trunk/spectro/ccwin.c
@@ -830,7 +830,7 @@ int ddebug /* >0 to print debug sta
return NULL;
}
- debugr2((errout,"new_ccwin: return sucessfully\n"));
+ debugr2((errout,"new_ccwin: return successfully\n"));
return p;
}
Index: trunk/profile/colverify.c
===================================================================
--- trunk.orig/profile/colverify.c
+++ trunk/profile/colverify.c
@@ -69,7 +69,7 @@ usage(void) {
fprintf(stderr," -D Use D50 100.0 as L*a*b* white reference\n");
fprintf(stderr," -c Show CIE94 delta E values\n");
fprintf(stderr," -k Show CIEDE2000 delta E values\n");
- fprintf(stderr," -h [hist.txt] Plot a histogram of delta E's [Optionaly save points to .txt]\n");
+ fprintf(stderr," -h [hist.txt] Plot a histogram of delta E's [Optionally save points to .txt]\n");
fprintf(stderr," -s Sort patch values by error\n");
fprintf(stderr," -w create PCS %s vector visualisation (measured%s)\n",vrml_format(),vrml_ext());
fprintf(stderr," -W create PCS %s marker visualisation (measured%s)\n",vrml_format(),vrml_ext());
Index: trunk/spectro/ex1.c
===================================================================
--- trunk.orig/spectro/ex1.c
+++ trunk/spectro/ex1.c
@@ -189,7 +189,7 @@ ex1_init_coms(inst *pp, baud_rate br, fl
p->gotcoms = 1;
- a1logd(p->log, 2, "ex1_init_coms: init coms has suceeded\n");
+ a1logd(p->log, 2, "ex1_init_coms: init coms has succeeded\n");
return inst_ok;
}
@@ -930,7 +930,7 @@ ex1_interp_native_error(ex1 *p, int ec)
case EX1_FLASH_MAP:
return "Flash map is incompatible with firmware";
case EX1_DEFERRED:
- return "Operation/Response deffered";
+ return "Operation/Response deferred";
default:
return NULL;
}
@@ -1280,7 +1280,7 @@ static int ex1_save_calibration(ex1 *p)
calf_wrspec(&x, p->sconf.idark[0]);
calf_wrspec(&x, p->sconf.idark[1]);
- a1logd(p->log,3,"nbytes = %d, Checkum = 0x%x\n",x.nbytes,x.chsum);
+ a1logd(p->log,3,"nbytes = %d, Checksum = 0x%x\n",x.nbytes,x.chsum);
calf_wints(&x, (int *)(&x.chsum), 1);
if (calf_done(&x))
@@ -1467,7 +1467,7 @@ static void dump_command(ex1 *p, ORD8 *b
if (flags & EX1_FLAG_NACK)
a1logd(p->log, 0, " Negative acknowldgement response\n");
if (flags & EX1_FLAG_EXPTN)
- a1logd(p->log, 0, " Exception occured\n");
+ a1logd(p->log, 0, " Exception occurred\n");
if (flags & EX1_FLAG_PVDEP)
a1logd(p->log, 0, " Protocol version is deprecated request\n");
@@ -1753,7 +1753,7 @@ int nd /* nz to disable debug message
}
if (p->log->debug >= 8) {
- a1logd(p->log,1,"\nex1_command: RECIEVING:\n");
+ a1logd(p->log,1,"\nex1_command: RECEIVING:\n");
dump_command(p, buf, rwbytes, p->log->debug);
}
Index: trunk/ccast/ccmes.c
===================================================================
--- trunk.orig/ccast/ccmes.c
+++ trunk/ccast/ccmes.c
@@ -85,7 +85,7 @@ char *ccmessv_emes(ccmessv_err rv) {
return "ccmes: connection has been closed";
}
- return "Uknown ccmessv error";
+ return "Unknown ccmessv error";
}
#if defined(LOWVERBTRACE) || defined(DEBUG)
Index: trunk/ccast/ccpacket.c
===================================================================
--- trunk.orig/ccast/ccpacket.c
+++ trunk/ccast/ccpacket.c
@@ -133,7 +133,7 @@ char *ccpacket_emes(ccpacket_err rv) {
return "Packet: failed to read message";
}
- return "Uknown ccpacket error";
+ return "Unknown ccpacket error";
}
/* Establish an ccpacket connection - implementation */
@@ -187,13 +187,13 @@ static ccpacket_err connect_ccpacket_imp
#endif
if ((rv = setsockopt(p->sock, SOL_SOCKET, SO_RCVTIMEO, (const char*)&tv,
sizeof(tv))) < 0) {
- DBG((g_log,0,"setsockopt timout failed with %d, errno %d",rv,ERRNO))
+ DBG((g_log,0,"setsockopt timeout failed with %d, errno %d",rv,ERRNO))
return ccpacket_connect;
}
tv = 2000;
if ((rv = setsockopt(p->sock, SOL_SOCKET, SO_SNDTIMEO, (const char*)&tv,
sizeof(tv))) < 0) {
- DBG((g_log,0,"setsockopt timout failed with %d, errno %d",rv,ERRNO))
+ DBG((g_log,0,"setsockopt timeout failed with %d, errno %d",rv,ERRNO))
return ccpacket_connect;
}
#else
@@ -207,14 +207,14 @@ static ccpacket_err connect_ccpacket_imp
#endif
if ((rv = setsockopt(p->sock, SOL_SOCKET, SO_RCVTIMEO, (const char*)&tv,
sizeof(tv))) < 0) {
- DBG((g_log,0,"setsockopt timout failed with %d, errno %d",rv,ERRNO))
+ DBG((g_log,0,"setsockopt timeout failed with %d, errno %d",rv,ERRNO))
return ccpacket_connect;
}
tv.tv_sec = 2;
tv.tv_usec = 0;
if ((rv = setsockopt(p->sock, SOL_SOCKET, SO_SNDTIMEO, (const char*)&tv,
sizeof(tv))) < 0) {
- DBG((g_log,0,"setsockopt timout failed with %d, errno %d",rv,ERRNO))
+ DBG((g_log,0,"setsockopt timeout failed with %d, errno %d",rv,ERRNO))
return ccpacket_connect;
}
#endif
@@ -224,7 +224,7 @@ static ccpacket_err connect_ccpacket_imp
ling.l_linger = 2; /* Two seconds */
if ((rv = setsockopt(p->sock, SOL_SOCKET, SO_LINGER, (const char*)&ling,
sizeof(ling))) < 0) {
- DBG((g_log,0,"setsockopt timout failed with %d, errno %d",rv,ERRNO))
+ DBG((g_log,0,"setsockopt timeout failed with %d, errno %d",rv,ERRNO))
return ccpacket_connect;
}
#endif /* NEVER */
Index: trunk/spectro/xdg_bds.c
===================================================================
--- trunk.orig/spectro/xdg_bds.c
+++ trunk/spectro/xdg_bds.c
@@ -879,7 +879,7 @@ char *xdg_errstr(xdg_error er) {
case xdg_nohome:
return "There is no $HOME";
case xdg_noalluserprofile:
- return "Theres no $ALLUSERSPROFILE is no $ALLUSERSPROFILE";
+ return "There's no $ALLUSERSPROFILE is no $ALLUSERSPROFILE";
case xdg_nopath:
return "There is no resulting path";
case xdg_mallformed:
Index: trunk/icc/icc.c
===================================================================
--- trunk.orig/icc/icc.c
+++ trunk/icc/icc.c
@@ -1481,7 +1481,7 @@ static const char *string_TagSignature(i
case icSigViewingCondDescTag:
return "Viewing Condition Description";
case icSigViewingConditionsTag:
- return "Viewing Condition Paramaters";
+ return "Viewing Condition Parameters";
/* ArgyllCMS private tag: */
case icmSigAbsToRelTransSpace:
@@ -5785,7 +5785,7 @@ int icmSetMultiLutTables(
return icp->errc = 1;
}
if (pp[tn]->ttype != p->ttype) {
- sprintf(icp->err,"icmSetMultiLutTables Tables have different Tage Type");
+ sprintf(icp->err,"icmSetMultiLutTables Tables have different Tag Type");
return icp->errc = 1;
}
Index: trunk/gamut/isecvol.c
===================================================================
--- trunk.orig/gamut/isecvol.c
+++ trunk/gamut/isecvol.c
@@ -174,7 +174,7 @@ printf("~1 doing triangle %d from %s gam
inout[i] = 0;
}
-printf("~1 verticies outside = %d\n",nout);
+printf("~1 vertices outside = %d\n",nout);
/* If none are in, skip this triangle */
if (nout == 3)
Index: trunk/gamut/viewgam.c
===================================================================
--- trunk.orig/gamut/viewgam.c
+++ trunk/gamut/viewgam.c
@@ -355,7 +355,7 @@ main(int argc, char *argv[]) {
error("Input file doesn't contain exactly two tables");
if ((nverts = pp->t[0].nsets) <= 0)
- error("No verticies");
+ error("No vertices");
if ((ntris = pp->t[1].nsets) <= 0)
error("No triangles");
Index: trunk/gamut/gamut.c
===================================================================
--- trunk.orig/gamut/gamut.c
+++ trunk/gamut/gamut.c
@@ -2152,8 +2152,8 @@ static void check_triangulation(gamut *s
for (j = i+1; j < 3; j++) {
if (tp->v[i] == tp->v[j]) {
failed = 1;
- printf("Validation failed - duplicate verticies:\n");
- printf("Triangle %d, has verticies %d %d %d\n", tp->n, tp->v[0]->n, tp->v[1]->n, tp->v[2]->n);
+ printf("Validation failed - duplicate vertices:\n");
+ printf("Triangle %d, has vertices %d %d %d\n", tp->n, tp->v[0]->n, tp->v[1]->n, tp->v[2]->n);
fflush(stdout);
}
}
@@ -2165,7 +2165,7 @@ static void check_triangulation(gamut *s
if (tp->e[i] == tp->e[j]) {
failed = 1;
printf("Validation failed - duplicate connectivity:\n");
- printf("Triangle %d, has verticies %d %d %d\n", tp->n, tp->v[0]->n, tp->v[1]->n, tp->v[2]->n);
+ printf("Triangle %d, has vertices %d %d %d\n", tp->n, tp->v[0]->n, tp->v[1]->n, tp->v[2]->n);
printf("Triangle %d, has edges %d %d %d\n", tp->n, tp->e[0]->n, tp->e[1]->n, tp->e[2]->n);
fflush(stdout);
}
@@ -2187,7 +2187,7 @@ static void check_triangulation(gamut *s
/* for this triangle is correct */
if (ei1 != i) {
failed = 1;
- printf("Validation failed - triangle edge index doesn't match record withing edge:\n");
+ printf("Validation failed - triangle edge index doesn't match record within edge:\n");
printf("Triangle %d, edge index %d edge %d has record %d\n", tp->n, i, e->n, ei1);
fflush(stdout);
}
@@ -2206,9 +2206,9 @@ static void check_triangulation(gamut *s
if ((e->v[0] != tp->v[i] || e->v[1] != tp->v[(i+1) % 3])
&& (e->v[1] != tp->v[i] || e->v[0] != tp->v[(i+1) % 3])) {
failed = 1;
- printf("Validation failed - edge doesn't have same verticies as triangle expects:\n");
- printf("Triangle %d, has verticies %d %d\n", tp->n, tp->v[i]->n, tp->v[(i+1) % 3]->n);
- printf("Edge %d, has verticies %d %d\n", e->n, e->v[0]->n, e->v[1]->n);
+ printf("Validation failed - edge doesn't have same vertices as triangle expects:\n");
+ printf("Triangle %d, has vertices %d %d\n", tp->n, tp->v[i]->n, tp->v[(i+1) % 3]->n);
+ printf("Edge %d, has vertices %d %d\n", e->n, e->v[0]->n, e->v[1]->n);
fflush(stdout);
}
@@ -2690,7 +2690,7 @@ gamut *s
ff[1] = fsz * foffs[i][0] + s->cent[1];
ff[2] = fsz * foffs[i][1] + s->cent[2];
if ((tvs[j++] = expand_gamut(s, ff)) == NULL) {
- fprintf(stderr,"gamut: internal error - failed to register a fake initial verticies!\n");
+ fprintf(stderr,"gamut: internal error - failed to register a fake initial vertices!\n");
exit (-1);
}
}
@@ -2699,7 +2699,7 @@ gamut *s
s->doingfake = 0;
#ifdef NEVER
- printf("Initial verticies:\n");
+ printf("Initial vertices:\n");
for (i = 0; i < 4; i++) {
printf(" %d: %f %f %f\n",tvs[i]->n, tvs[i]->p[0], tvs[i]->p[1], tvs[i]->p[2]);
}
@@ -6427,7 +6427,7 @@ char *filename
if ((nverts = gam->t[0].nsets) <= 0) {
- fprintf(stderr,"No verticies");
+ fprintf(stderr,"No vertices");
return 1;
}
if ((ntris = gam->t[1].nsets) <= 0) {
Index: trunk/rspl/rev.c
===================================================================
--- trunk.orig/rspl/rev.c
+++ trunk/rspl/rev.c
@@ -5872,7 +5872,7 @@ int sdi /* Sub-simplex dimensionali
x->face = 0;
#ifdef DEBUG
- printf("Verticies = ");
+ printf("vertices = ");
for (i = 0; i <= sdi; i++)
printf("%d ",vcmb[i]);
printf("\n");
@@ -10344,7 +10344,7 @@ rspl *s
vc.nilist = 0;
xlist = NULL;
- DBG(("deleting verticies in all bxcells\n"));
+ DBG(("deleting vertices in all bxcells\n"));
/* The thinning may have deleted verticies from bxcell's that */
/* were not involved in the thinning, so go though all bxcells */
@@ -10484,7 +10484,7 @@ rspl *s
//printf("~1 deleting vtx %d\n",vx->ix);
del_vtxrec_hash(&vc, vx->ix);
if (get_vtxrec(&vc, vx->ix) != NULL)
- error("get_vtxrec suceeded after del_vtxrec_hash!");
+ error("get_vtxrec succeeded after del_vtxrec_hash!");
}
#else /* !DELETE_SHAD */
/* Keep track of deleted verticies that are in this bx, */
@@ -11165,7 +11165,7 @@ rspl *s
}
}
printf("%d crossed triangles tested\n",notverts);
- printf("%d hidden verticies retained for crossed triangles\n",nopreserved);
+ printf("%d hidden vertices retained for crossed triangles\n",nopreserved);
printf("Took %f secs to preserving crossing triangless\n",0.001 * (msec_time()-lmsec));
#endif
} /* End of preserve shadowed triangles */
Index: trunk/spectro/munki.c
===================================================================
--- trunk.orig/spectro/munki.c
+++ trunk/spectro/munki.c
@@ -114,7 +114,7 @@ munki_init_coms(inst *pp, baud_rate br,
return munki_interp_code(p, icoms2munki_err(se));
}
- a1logd(p->log, 2, "munki_init_coms: init coms has suceeded\n");
+ a1logd(p->log, 2, "munki_init_coms: init coms has succeeded\n");
p->gotcoms = 1;
return inst_ok;
@@ -526,7 +526,7 @@ munki_interp_error(inst *pp, munki_code
case MUNKI_INT_CREATE_EEPROM_STORE:
return "Error in creating EEProm store";
case MUNKI_INT_NEW_RSPL_FAILED:
- return "Creating RSPL object faild";
+ return "Creating RSPL object failed";
case MUNKI_INT_CAL_SAVE:
return "Unable to save calibration to file";
case MUNKI_INT_CAL_RESTORE:
Index: trunk/spectro/i1pro.c
===================================================================
--- trunk.orig/spectro/i1pro.c
+++ trunk/spectro/i1pro.c
@@ -120,7 +120,7 @@ i1pro_init_coms(inst *pp, baud_rate br,
return i1pro_interp_code(p, icoms2i1pro_err(se));
}
- a1logd(p->log, 2, "i1pro_init_coms: init coms has suceeded\n");
+ a1logd(p->log, 2, "i1pro_init_coms: init coms has succeeded\n");
p->gotcoms = 1;
return inst_ok;
@@ -509,7 +509,7 @@ i1pro_interp_error(inst *pp, i1pro_code
case I1PRO_INT_EEPROM_DATA_MISSING:
return "EEProm data is missing";
case I1PRO_INT_NEW_RSPL_FAILED:
- return "Creating RSPL object faild";
+ return "Creating RSPL object failed";
case I1PRO_INT_CAL_SAVE:
return "Unable to save calibration to file";
case I1PRO_INT_CAL_RESTORE:
Index: trunk/xicc/mpp.c
===================================================================
--- trunk.orig/xicc/mpp.c
+++ trunk/xicc/mpp.c
@@ -735,7 +735,7 @@ int use_fwa /* NZ to involke
error ("mpp->set_ilob, instrument doesn't have an FWA illuminent");
if (p->spc->set_fwa(p->spc, &inst, NULL, &white))
- error ("mpp->set_ilob, set_fwa faild");
+ error ("mpp->set_ilob, set_fwa failed");
}
return 0;
Index: trunk/plot/vrml.c
===================================================================
--- trunk.orig/plot/vrml.c
+++ trunk/plot/vrml.c
@@ -646,7 +646,7 @@ double cc[3] /* Surface color, cc == NUL
fprintf(s->fp," ]\n");
fprintf(s->fp," }\n");
fprintf(s->fp,"\n");
- fprintf(s->fp," coordIndex [ # Indexes of %s Verticies \n",
+ fprintf(s->fp," coordIndex [ # Indexes of %s Vertices \n",
lines ? "line" : "polygon");
/* Spit out the lines/triangles/quads */
Index: trunk/target/ofps.c
===================================================================
--- trunk.orig/target/ofps.c
+++ trunk/target/ofps.c
@@ -2613,7 +2613,7 @@ static int position_vtx(
if (tries > s->maxretries)
s->maxretries = tries;
#ifdef DEBUG
- printf(" - comb %s suceeded on retry %d (max %d)\n",pcomb(di,vv->nix),tries,s->maxretries);
+ printf(" - comb %s succeeded on retry %d (max %d)\n",pcomb(di,vv->nix),tries,s->maxretries);
printf(" oog = %f, eperr = %f, ceperr = %f\n",vv->oog,vv->eperr,vv->ceperr);
#endif
//if (tries > 10)
@@ -2628,7 +2628,7 @@ static int position_vtx(
#ifdef DUMP_FERR /* Create .tiff of dnsq function error */
if (tries >= DUMP_FERR) {
- printf("Suceeded on retry %d, dumping debug rasters\n",tries);
+ printf("Succeeded on retry %d, dumping debug rasters\n",tries);
/* Re-run the last unsucessful dnsq, to trace the path */
pcx.debug = 1;
@@ -6222,7 +6222,7 @@ static int ofps_findhit_vtxs(ofps *s, no
int hit = 0;
if (nn->ix < 0)
- error("ofps_findhit_vtxs given gamut boudary node ix %d",nn->ix);
+ error("ofps_findhit_vtxs given gamut boundary node ix %d",nn->ix);
#ifdef DEBUG
if (s->agrid_init == 0)
@@ -8024,7 +8024,7 @@ ofps *s
warning("Verify of incremental vertexes failed!");
printf("Verify of incremental vertexes failed!\n");
} else {
- warning("Verify of incremental vertexes suceeded!");
+ warning("Verify of incremental vertexes succeeded!");
}
#ifdef DUMP_STRUCTURE
dump_node_vtxs(s, 1);
@@ -8444,7 +8444,7 @@ int nopstop /* Debug - number of opti
fprintf(stderr,"Average dnsqs/position = %.2f\n",s->dnsqs/(double)s->positions);
fprintf(stderr,"Average function calls/dnsq = %.1f\n",s->funccount/(double)s->dnsqs);
fprintf(stderr,"Maximum function calls/dnsq = %d\n",s->maxfunc);
- fprintf(stderr,"Average function calls/sucessful dnsq = %.2f\n",s->sucfunc/(double)s->sucdnsq);
+ fprintf(stderr,"Average function calls/successful dnsq = %.2f\n",s->sucfunc/(double)s->sucdnsq);
fprintf(stderr,"Average function calls/position = %.1f\n",s->funccount/(double)s->positions);
fprintf(stderr,"Maximum tries for dnsq sucess %d\n",s->maxretries);
fprintf(stderr,"Number of position_vtx failures %d\n",s->posfails);
Index: trunk/spectro/synthread.c
===================================================================
--- trunk.orig/spectro/synthread.c
+++ trunk/spectro/synthread.c
@@ -487,14 +487,14 @@ printf("~1 omax = %f %f %f\n", md.omax[0
else if (nmask == ICX_K && sep_ins == icSigCmykData)
gfudge = 2;
else if (icx_colorant_comb_match_icc(nmask, sep_ins) == 0) {
- error("Separation ICC device space '%s' dosen't match TI1 '%s'",
+ error("Separation ICC device space '%s' doesn't match TI1 '%s'",
icm2str(icmColorSpaceSignature, sep_ins),
ident); /* Should free(). */
}
/* Check if separation ICC output is compatible with ICC/MPP/TI3 conversion */
if (sep_outs != ins)
- error("Synthetic device space '%s' dosen't match Separation ICC '%s'",
+ error("Synthetic device space '%s' doesn't match Separation ICC '%s'",
icm2str(icmColorSpaceSignature, ins),
icm2str(icmColorSpaceSignature, sep_outs));
} else {
@@ -504,7 +504,7 @@ printf("~1 omax = %f %f %f\n", md.omax[0
else if (nmask == ICX_K && ins == icSigCmykData)
gfudge = 2; /* Should allow for other colorant combo's that include black */
else if (icx_colorant_comb_match_icc(nmask, ins) == 0) {
- error("Synthetic device space '%s' dosen't match TI1 '%s'",
+ error("Synthetic device space '%s' doesn't match TI1 '%s'",
icm2str(icmColorSpaceSignature, ins),
ident); // Should free().
}
Index: trunk/spectro/smcube.c
===================================================================
--- trunk.orig/spectro/smcube.c
+++ trunk/spectro/smcube.c
@@ -293,7 +293,7 @@ smcube_init_coms(inst *pp, baud_rate br,
}
amutex_unlock(p->lock);
}
- a1logd(p->log, 2, "smcube_init_coms: init coms has suceeded\n");
+ a1logd(p->log, 2, "smcube_init_coms: init coms has succeeded\n");
p->gotcoms = 1;
@@ -768,7 +768,7 @@ smcube_interp_error(inst *pp, int ec) {
case SMCUBE_INT_THREADFAILED:
return "Starting diffuser position thread failed";
case SMCUBE_INT_ILL_WRITE:
- return "Attemp to write to factory calibration";
+ return "Attempt to write to factory calibration";
case SMCUBE_INT_WHITE_CALIB:
return "No valid white calibration";
case SMCUBE_INT_BLACK_CALIB:
@@ -1248,7 +1248,7 @@ smcube_get_idle_time(smcube *p, int *pit
itime = read_ORD16_be(buf + 4);
if (!nd)
- a1logd(p->log, 2, "smcube_get_idle_time: returing %d\n",itime);
+ a1logd(p->log, 2, "smcube_get_idle_time: returning %d\n",itime);
if (pitime != NULL)
*pitime = itime;
@@ -1293,11 +1293,11 @@ smcube_fact_measure(smcube *p, double *X
XYZ[0] = IEEE754todouble(read_ORD32_be(buf + 4));
XYZ[1] = IEEE754todouble(read_ORD32_be(buf + 8));
XYZ[2] = IEEE754todouble(read_ORD32_be(buf + 12));
- a1logd(p->log, 2, "smcube_fact_measure: returing L*a*b* %f %f %f\n",XYZ[0], XYZ[1], XYZ[2]);
+ a1logd(p->log, 2, "smcube_fact_measure: returning L*a*b* %f %f %f\n",XYZ[0], XYZ[1], XYZ[2]);
icmLab2XYZ(&icmD50_100, XYZ, XYZ);
- a1logd(p->log, 2, "smcube_fact_measure: returing XYZ %f %f %f\n",XYZ[0], XYZ[1], XYZ[2]);
+ a1logd(p->log, 2, "smcube_fact_measure: returning XYZ %f %f %f\n",XYZ[0], XYZ[1], XYZ[2]);
return inst_ok;
}
@@ -1339,7 +1339,7 @@ smcube_poll_measure(smcube *p, double to
p->XYZ[0] = IEEE754todouble(read_ORD32_be(buf + 4));
p->XYZ[1] = IEEE754todouble(read_ORD32_be(buf + 8));
p->XYZ[2] = IEEE754todouble(read_ORD32_be(buf + 12));
- if (!nd) a1logd(p->log, 2, "smcube_poll_measure: returing L*a*b* %f %f %f\n",p->XYZ[0], p->XYZ[1], p->XYZ[2]);
+ if (!nd) a1logd(p->log, 2, "smcube_poll_measure: returning L*a*b* %f %f %f\n",p->XYZ[0], p->XYZ[1], p->XYZ[2]);
icmLab2XYZ(&icmD50_100, p->XYZ, p->XYZ);
@@ -2066,7 +2066,7 @@ int static smcube_save_calibration(smcub
calf_wtime_ts(&x, &p->gdate, 1);
calf_wdoubles(&x, p->goff, 3);
- a1logd(p->log,3,"nbytes = %d, Checkum = 0x%x\n",x.nbytes,x.chsum);
+ a1logd(p->log,3,"nbytes = %d, Checksum = 0x%x\n",x.nbytes,x.chsum);
calf_wints(&x, (int *)(&x.chsum), 1);
if (calf_done(&x))
Index: trunk/spectro/kleink10.c
===================================================================
--- trunk.orig/spectro/kleink10.c
+++ trunk/spectro/kleink10.c
@@ -730,7 +730,7 @@ int ix /* Klein calibration index 1
if (buf[0] != 'D' || buf[1] != '1') {
amutex_unlock(p->lock);
- a1logd(p->log, 1, "k10_read_cal_matrix: didn't get echo'd commad D1\n");
+ a1logd(p->log, 1, "k10_read_cal_matrix: didn't get echo'd command D1\n");
return inst_protocol_error;
}
@@ -2077,7 +2077,7 @@ int *pinstmsec) { /* Return instrument r
break;
}
- a1logd(p->log, 2, "k10_meas_delay: stoped at sample %d time %f\n",i,samp[i].sec);
+ a1logd(p->log, 2, "k10_meas_delay: stopped at sample %d time %f\n",i,samp[i].sec);
/* Compute overall delay */
dispmsec = (int)(samp[i].sec * 1000.0 + 0.5);
Index: trunk/spectro/i1d3.c
===================================================================
--- trunk.orig/spectro/i1d3.c
+++ trunk/spectro/i1d3.c
@@ -2522,7 +2522,7 @@ i1d3_init_coms(inst *pp, baud_rate br, f
a1logd(p->log, 1, "i1d3_init_coms: failed with rv = 0x%x\n",ev);
return ev;
}
- a1logd(p->log, 2, "i1d3_init_coms: suceeded\n");
+ a1logd(p->log, 2, "i1d3_init_coms: succeeded\n");
p->gotcoms = 1;
return inst_ok;
@@ -3198,7 +3198,7 @@ int *pinstmsec) { /* Return instrumen
break;
}
- a1logd(p->log, 2, "i1d3_meas_delay: stoped at sample %d time %f\n",i,samp[i].sec);
+ a1logd(p->log, 2, "i1d3_meas_delay: stopped at sample %d time %f\n",i,samp[i].sec);
/* Compute overall delay */
dispmsec = (int)(samp[i].sec * 1000.0 + 0.5);
Index: trunk/spectro/i1disp.c
===================================================================
--- trunk.orig/spectro/i1disp.c
+++ trunk/spectro/i1disp.c
@@ -1360,7 +1360,7 @@ i1disp_read_refrate(
*ref_rate = rrate;
return inst_ok;
} else {
- a1logd(p->log, 3, "No discernable refresh frequency measured\n");
+ a1logd(p->log, 3, "No discernible refresh frequency measured\n");
if (ref_rate != NULL)
*ref_rate = 0.0;
return inst_misread;
Index: trunk/ccast/ccmdns.c
===================================================================
--- trunk.orig/ccast/ccmdns.c
+++ trunk/ccast/ccmdns.c
@@ -352,7 +352,7 @@ static int init_socket_mDNS(SOCKET *psoc
DWORD tv;
tv = 100;
if (setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (const char*)&tv, sizeof(tv)) < 0) {
- DBG((g_log,0,"setsockopt timout failed with %d\n",ERRNO))
+ DBG((g_log,0,"setsockopt timeout failed with %d\n",ERRNO))
closesocket(sock);
return 1;
}
@@ -363,7 +363,7 @@ static int init_socket_mDNS(SOCKET *psoc
tv.tv_sec = 0;
tv.tv_usec = 100 * 1000;
if (setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (const char*)&tv, sizeof(tv)) < 0) {
- DBG((g_log,0,"setsockopt timout failed with %d\n",ERRNO))
+ DBG((g_log,0,"setsockopt timeout failed with %d\n",ERRNO))
closesocket(sock);
return 1;
}
Index: trunk/spectro/spyd2.c
===================================================================
--- trunk.orig/spectro/spyd2.c
+++ trunk/spectro/spyd2.c
@@ -2916,7 +2916,7 @@ spyd2_init_coms(inst *pp, baud_rate br,
return spyd2_interp_code((inst *)p, icoms2spyd2_err(se));
}
- a1logd(p->log, 2, "spyd2_init_coms: suceeded\n");
+ a1logd(p->log, 2, "spyd2_init_coms: succeeded\n");
p->gotcoms = 1;
return inst_ok;
@@ -3373,9 +3373,9 @@ spyd2_interp_error(inst *pp, int ec) {
case SPYD2_BADREADSIZE:
return "Didn't read expected amount of data";
case SPYD2_TRIGTIMEOUT:
- return "Trigger timout";
+ return "Trigger timeout";
case SPYD2_OVERALLTIMEOUT:
- return "Overall timout";
+ return "Overall timeout";
case SPYD2_BAD_EE_CRC:
return "Serial EEProm CRC failed";
Index: trunk/spectro/specbos.c
===================================================================
--- trunk.orig/spectro/specbos.c
+++ trunk/spectro/specbos.c
@@ -351,7 +351,7 @@ specbos_init_coms(inst *pp, baud_rate br
a1logd(p->log, 2, "specbos_init_coms: unrecognised model %04d\n",p->model);
return inst_unknown_model;
}
- a1logd(p->log, 2, "specbos_init_coms: init coms has suceeded\n");
+ a1logd(p->log, 2, "specbos_init_coms: init coms has succeeded\n");
/* See if it's a 1501 or 1511 */
if (p->model == 1501) {
@@ -1693,7 +1693,7 @@ char id[CALIDLEN] /* Condition identifi
if ((ev = specbos_get_n_a_cals((inst *)p, &needed, &available)) != inst_ok)
return ev;
- a1logd(p->log,4,"specbos_calibrate: needed 0x%x, avaialble 0x%x\n",needed, available);
+ a1logd(p->log,4,"specbos_calibrate: needed 0x%x, available 0x%x\n",needed, available);
/* Translate inst_calt_all/needed into something specific */
if (*calt == inst_calt_all
Index: trunk/plot/plot.c
===================================================================
--- trunk.orig/plot/plot.c
+++ trunk/plot/plot.c
@@ -2521,7 +2521,7 @@ static void dprintf(char *fmt, ...) {
printf("~1 found NtQueryInformationProcess\n"); fflush(stdout);
if(NtQueryInformationProcess(GetCurrentProcess(), 0,
&pbi, sizeof(pbi), &ulSize) >= 0 && ulSize == sizeof(pbi)) {
-printf("~1 NtQueryInformationProcess suceeded\n"); fflush(stdout);
+printf("~1 NtQueryInformationProcess succeeded\n"); fflush(stdout);
*(FARPROC *)&AttachConsole =
GetProcAddress(LoadLibraryA("kernel32.dll"), "AttachConsole");
Index: trunk/spectro/dtp22.c
===================================================================
--- trunk.orig/spectro/dtp22.c
+++ trunk/spectro/dtp22.c
@@ -276,7 +276,7 @@ dtp22_init_coms(inst *pp, baud_rate br,
return inst_coms_fail;
}
- a1logd(p->log, 2, "dtp22_init_coms: init coms has suceeded\n");
+ a1logd(p->log, 2, "dtp22_init_coms: init coms has succeeded\n");
p->gotcoms = 1;
return inst_ok;
Index: trunk/spectro/dtp41.c
===================================================================
--- trunk.orig/spectro/dtp41.c
+++ trunk/spectro/dtp41.c
@@ -256,7 +256,7 @@ dtp41_init_coms(inst *pp, baud_rate br,
return inst_coms_fail;
}
- a1logd(p->log, 2, "dtp41_init_coms: init coms has suceeded\n");
+ a1logd(p->log, 2, "dtp41_init_coms: init coms has succeeded\n");
p->gotcoms = 1;
return inst_ok;
Index: trunk/xicc/xutils.c
===================================================================
--- trunk.orig/xicc/xutils.c
+++ trunk/xicc/xutils.c
@@ -147,7 +147,7 @@ icc *read_embedded_icc(char *file_name)
TIFFSetWarningHandler(oldwarnh);
TIFFSetErrorHandlerExt(olderrhx);
TIFFSetWarningHandlerExt(oldwarnhx);
- debug("TIFFOpen suceeded\n");
+ debug("TIFFOpen succeeded\n");
if (TIFFGetField(rh, TIFFTAG_ICCPROFILE, &size, &tag) == 0 || size == 0) {
debug2((errout,"no ICC profile found in '%s'\n",file_name));
Index: trunk/spectro/rspec.c
===================================================================
--- trunk.orig/spectro/rspec.c
+++ trunk/spectro/rspec.c
@@ -957,7 +957,7 @@ int calf_open(calf *x, a1log *log, char
}
xdg_free(cal_paths, no_paths);
- a1logd(x->log,2,"calf_open: suceeded\n");
+ a1logd(x->log,2,"calf_open: succeeded\n");
return 0;
}
Index: trunk/spectro/chartread.c
===================================================================
--- trunk.orig/spectro/chartread.c
+++ trunk/spectro/chartread.c
@@ -1171,7 +1171,7 @@ a1log *log /* verb, debug & error log
/* Or something is wrong with instrument capabilities */
} else {
- printf("\nNo reasonable trigger mode avilable for this instrument\n");
+ printf("\nNo reasonable trigger mode available for this instrument\n");
it->del(it);
return -1;
}
@@ -1684,7 +1684,7 @@ a1log *log /* verb, debug & error log
/* Or something is wrong with instrument capabilities */
} else {
- printf("\nNo reasonable trigger mode avilable for this instrument\n");
+ printf("\nNo reasonable trigger mode available for this instrument\n");
it->del(it);
return -1;
}
Index: trunk/spectro/illumread.c
===================================================================
--- trunk.orig/spectro/illumread.c
+++ trunk/spectro/illumread.c
@@ -663,7 +663,7 @@ int main(int argc, char *argv[])
/* Or something is wrong with instrument capabilities */
} else {
- printf("!!! No reasonable trigger mode avilable for this instrument !!!\n");
+ printf("!!! No reasonable trigger mode available for this instrument !!!\n");
continue;
}
if ((rv = it->get_set_opt(it, trigmode)) != inst_ok) {
Index: trunk/profile/mppprof.c
===================================================================
--- trunk.orig/profile/mppprof.c
+++ trunk/profile/mppprof.c
@@ -582,7 +582,7 @@ make_output_mpp(
/* Estimate the ink mixing model */
if (omix) {
- printf("The ink mixing model isn't implimented here yet\n");
+ printf("The ink mixing model isn't implemented here yet\n");
}
/* create and write the cgats profile */
Index: trunk/spectro/i1pro_imp.h
===================================================================
--- trunk.orig/spectro/i1pro_imp.h
+++ trunk/spectro/i1pro_imp.h
@@ -437,7 +437,7 @@ void del_i1proimp(i1pro *p);
#define I1PRO_INT_SAVE_SUBT_MODE 0x65 /* Can't save calibration if in subt mode */
#define I1PRO_INT_NO_CAL_TO_SAVE 0x66 /* No calibration data to save */
#define I1PRO_INT_EEPROM_DATA_MISSING 0x67 /* EEProm data is missing */
-#define I1PRO_INT_NEW_RSPL_FAILED 0x68 /* Creating RSPL object faild */
+#define I1PRO_INT_NEW_RSPL_FAILED 0x68 /* Creating RSPL object failed */
#define I1PRO_INT_CAL_SAVE 0x69 /* Unable to save calibration to file */
#define I1PRO_INT_CAL_RESTORE 0x6A /* Unable to restore calibration from file */
#define I1PRO_INT_CAL_TOUCH 0x6B /* Unable to touch calibration file */
Index: trunk/spectro/munki_imp.h
===================================================================
--- trunk.orig/spectro/munki_imp.h
+++ trunk/spectro/munki_imp.h
@@ -386,7 +386,7 @@ void del_munkiimp(munki *p);
#define MUNKI_INT_CIECONVFAIL 0x61 /* Creating spectral to CIE converted failed */
#define MUNKI_INT_MALLOC 0x62 /* Error in mallocing memory */
#define MUNKI_INT_CREATE_EEPROM_STORE 0x63 /* Error in creating EEProm store */
-#define MUNKI_INT_NEW_RSPL_FAILED 0x64 /* Creating RSPL object faild */
+#define MUNKI_INT_NEW_RSPL_FAILED 0x64 /* Creating RSPL object failed */
#define MUNKI_INT_CAL_SAVE 0x65 /* Unable to save calibration to file */
#define MUNKI_INT_CAL_RESTORE 0x66 /* Unable to restore calibration from file */
#define MUNKI_INT_CAL_TOUCH 0x67 /* Unable to touch calibration file */
Index: trunk/spectro/spec2cie.c
===================================================================
--- trunk.orig/spectro/spec2cie.c
+++ trunk/spectro/spec2cie.c
@@ -215,7 +215,7 @@ main(int argc, char *argv[])
calstdi = xcalstd_gmdi;
calstdo = xcalstd_xrdi;
} else {
- //usage("Paramater after -A '%c%c' not recognized",na[0],na[1]);
+ //usage("Parameter after -A '%c%c' not recognized",na[0],na[1]);
usage();
}
}
|