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
|
From: =?utf-8?q?Wolfgang_F=C3=BCtterer?= <debian@wlf-online.de>
Date: Thu, 21 Jan 2016 13:45:05 +0100
Subject: Removed spelling errors in binary
---
cgx_2.17/src/cgx.c | 2 +-
cgx_2.17/src/fuss.c | 2 +-
cgx_2.17/src/meshSurf.c | 2 +-
cgx_2.17/src/pickFunktions.c | 2 +-
cgx_2.17/src/plotFunktions.c | 2 +-
cgx_2.17/src/readFoam.c | 2 +-
cgx_2.17/src/readfrd.c | 6 +++---
cgx_2.17/src/setFunktions.c | 2 +-
8 files changed, 10 insertions(+), 10 deletions(-)
--- a/cgx_2.21/src/cgx.c
+++ b/cgx_2.21/src/cgx.c
@@ -67,7 +67,7 @@ void generalinfo()
printf(" -ansl reads a concatenated ansys list file (nodes,elems,temps) \n");
printf(" -b build-mode, geometry (command) file must be provided \n");
printf(" -bg background, suppress creation of graphic output \n");
- printf(" otherwhise as -b, geometry (command) file must be provided \n");
+ printf(" otherwise as -b, geometry (command) file must be provided \n");
printf(" -c read an solver input file (ccx) \n");
printf(" -duns2d read duns result files (2D) \n");
printf(" -duns3d read duns result files (3D) \n");
--- a/cgx_2.21/src/fuss.c
+++ b/cgx_2.21/src/fuss.c
@@ -290,7 +290,7 @@ int fuss (Points **point_f, Lines **line
point[line[i].p2].name = "SK2";
break;
}
- else {printf("\nERROR: This function doesnt work neither with spline nor with nurbs or anything else!! Sorry.\n"); return EXIT_FAILURE;}
+ else {printf("\nERROR: This function doesn't work neither with spline nor with nurbs or anything else!! Sorry.\n"); return EXIT_FAILURE;}
}
if(i == (set[setNr].anz_l-1)){
point[pNum].name = "Min";
--- a/cgx_2.21/src/meshSurf.c
+++ b/cgx_2.21/src/meshSurf.c
@@ -974,7 +974,7 @@ int mesh_tr3u(int nr, int renderFlag)
//replace later:
/* memory for the boundary node-seach algorithm */
#if TEST
- printf(" boundary node-seach\n");
+ printf(" boundary node-search\n");
#endif
/* stelle daten fuer near3d bereit */
--- a/cgx_2.21/src/pickFunktions.c
+++ b/cgx_2.21/src/pickFunktions.c
@@ -3665,7 +3665,7 @@ void goPicking( int x, int y, char *type
hits = glRenderMode (GL_RENDER);
if (hits<0)
{
- errMsg("\nWARNING: Overflow occured, select a smaller region and try again!\n");
+ errMsg("\nWARNING: Overflow occurred, select a smaller region and try again!\n");
}
else
{
--- a/cgx_2.21/src/plotFunktions.c
+++ b/cgx_2.21/src/plotFunktions.c
@@ -124,7 +124,7 @@ extern SpecialSet specialset[1];
int current_nurbs;
static void NurbsErrorCallback(GLenum which)
{
- printf(" GluNURBS: error occured (%d):\n", which);
+ printf(" GluNURBS: error occurred (%d):\n", which);
if(current_nurbs>-1)
{
printf(" %s in nurbs:%s see set:%s\n", gluErrorString(which), nurbs[current_nurbs].name,specialset->bnur);
--- a/cgx_2.21/src/readFoam.c
+++ b/cgx_2.21/src/readFoam.c
@@ -661,7 +661,7 @@ int readFoam(char *datin, Summen *apre,
/* scan over all project directories and search for results */
sum_dir=0;
dirp = opendir(datin);
- printf("seach for results in %s\n", datin );
+ printf("search for results in %s\n", datin );
if (dirp != NULL) while ((dp = readdir(dirp)) != NULL)
{
--- a/cgx_2.21/src/readfrd.c
+++ b/cgx_2.21/src/readfrd.c
@@ -766,7 +766,7 @@ int readfrd( char *datin, Summen *anz, N
if( lcase[anz->l].irtype > 2 )
{
- printf(" Found ELEMENT DATA, this is not suported!\n");
+ printf(" Found ELEMENT DATA, this is not supported!\n");
anz->l--;
goto next;
}
@@ -1430,7 +1430,7 @@ int readfrdblock(int lc, Summen *anz,
if( lcase[lc].irtype > 2 )
{
- printf(" ERROR: Found ELEMENT DATA, this is not suported!\n");
+ printf(" ERROR: Found ELEMENT DATA, this is not supported!\n");
return(-1);
}
@@ -1723,7 +1723,7 @@ int readOneNode( int lc, Summen *anz, Da
if( lcase[lc].irtype > 2 )
{
- printf(" ERROR: Found ELEMENT DATA, this is not suported!\n");
+ printf(" ERROR: Found ELEMENT DATA, this is not supported!\n");
return(-1);
}
--- a/cgx_2.21/src/setFunktions.c
+++ b/cgx_2.21/src/setFunktions.c
@@ -9357,7 +9357,7 @@ void pre_split( char *record)
}
else if(m>0)
{
- printf("c:%d e:%d m:%d unknow case\n",c, e, m);
+ printf("c:%d e:%d m:%d unknown case\n",c, e, m);
goto next_elem;
}
}
|