mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix typos.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@923 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
51f6e6dcaa
commit
709c90da4c
1 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@
|
|||
({ typeof(V) __v=(V); typeof(A) __a=(A); \
|
||||
__a*((__v+__a-1)/__a); })
|
||||
|
||||
@implementation BinaryCStream
|
||||
@implementation RawCStream
|
||||
|
||||
|
||||
/* For debugging */
|
||||
|
@ -140,7 +140,7 @@ static BOOL debug_binary_coder;
|
|||
/* Change this so we don't re-write type info every time. */
|
||||
[self encodeValueOfCType: type
|
||||
at: d
|
||||
withName:z NULL];
|
||||
withName: NULL];
|
||||
((char*)d) += offset;
|
||||
}
|
||||
break;
|
||||
|
@ -243,7 +243,7 @@ static BOOL debug_binary_coder;
|
|||
/* xxx Do we need to allocate space just like char* ? No. */
|
||||
int acc_size = 0;
|
||||
int align;
|
||||
char *save_type = type;
|
||||
const char *save_type = type;
|
||||
|
||||
while (*type != _C_STRUCT_E && *type++ != '='); /* skip "<name>=" */
|
||||
while (*type != _C_STRUCT_E)
|
||||
|
|
Loading…
Reference in a new issue