Skip to content

Commit

Permalink
beesep: translate german variable name into english
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Ruester committed May 16, 2012
1 parent 61fde91 commit 5f488b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/beesep.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ int main(int argc, char** argv)
char gl=0; /* equal sign */
char dp=0; /* colon */
int dp_pos=0; /* position of last colon */
int strlaenge=0;
int length=0;
int i=0;
if(argc<2)
{
Expand Down Expand Up @@ -68,10 +68,10 @@ int main(int argc, char** argv)
}

/* save tokens in an array and print them */
strlaenge=i;
length=i;
i=0;
gl=0;
while(i<strlaenge)
while(i<length)
{
printf("%c",argv[1][i]);
fflush(stdout);
Expand Down

0 comments on commit 5f488b4

Please sign in to comment.