Skip to content

Commit

Permalink
correct misspellings of "uninitialized"
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/jj/hercules.svn/trunk@3878 956126f8-22a0-4046-8f4a-272fa8102e63
  • Loading branch information
Fish (David B Trout) committed May 6, 2006
1 parent 797a836 commit a5e5fe6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cckddiag.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ char pathname[MAX_PATH]; /* file path in host format */
ckd->name, heads);
} else {
blks = 0;
#if 0 /* cdevhdr is uninitialised and blks is never referenced... */
#if 0 /* cdevhdr is uninitialized and blks is never referenced... */
blks = ((U32)(cdevhdr.cyls[0]) << 24)
| ((U32)(cdevhdr.cyls[2]) << 16)
| ((U32)(cdevhdr.cyls[1]) << 8)
Expand Down
2 changes: 1 addition & 1 deletion ctc_ctci.c
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ void CTCI_Query( DEVBLK* pDEVBLK, char** ppszClass,

if(!pCTCBLK)
{
strlcpy(pBuffer,"*Uninitialised",iBufLen);
strlcpy(pBuffer,"*Uninitialized",iBufLen);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion ctc_lcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ void LCS_Query( DEVBLK* pDEVBLK, char** ppszClass,

if(!pLCSDEV)
{
strlcpy(pBuffer,"*Uninitialised",iBufLen);
strlcpy(pBuffer,"*Uninitialized",iBufLen);
return;
}

Expand Down

0 comments on commit a5e5fe6

Please sign in to comment.