diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-24 12:52:02 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-25 12:25:17 +0000 |
commit | 25e0872da600c65a08c73c335f0e1ef21b2f00f5 (patch) | |
tree | 17bb46a39c838c5932ca7ca6b3d4fa3c19488583 /solenv | |
parent | 7f56e58148602f75b7b5ccccf1860dc65c4620d0 (diff) |
Fix typos
Change-Id: I4eda687db6ad8d41e6a28430c76b288510da605d
Reviewed-on: https://gerrit.libreoffice.org/35645
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/concat-deps.c | 6 | ||||
-rw-r--r-- | solenv/doc/gbuild/solenv/gbuild/gbuild.mk | 4 | ||||
-rw-r--r-- | solenv/gbuild/gbuild.mk | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/solenv/bin/concat-deps.c b/solenv/bin/concat-deps.c index 32e4f10ee4e0..88144465eda7 100644 --- a/solenv/bin/concat-deps.c +++ b/solenv/bin/concat-deps.c @@ -263,7 +263,7 @@ void* data; } else { - /* re-used old freed element by chopipng the head of the free list */ + /* re-used old freed element by chopping the head of the free list */ pool->head_free = *(void**)data; } @@ -389,9 +389,9 @@ static unsigned int hash_compute( struct hash* hash, const char* key, int length * but we mask the undefined stuff if any, so we are still good, thanks * to alignment of memory allocation and tail-memory management overhead * we always can read 3 bytes past the official end without triggering - * a segfault -- if you find a platform/compiler couple for which that postulat + * a segfault -- if you find a platform/compiler couple for which that postulate * is false, then you just need to over-allocate by 2 more bytes in file_load() - * file_load already over-allocate by 1 to sitck a \0 at the end of the buffer. + * file_load already over-allocate by 1 to stick a \0 at the end of the buffer. */ switch(length) { diff --git a/solenv/doc/gbuild/solenv/gbuild/gbuild.mk b/solenv/doc/gbuild/solenv/gbuild/gbuild.mk index 9cdb064a974c..55ef76cdc05f 100644 --- a/solenv/doc/gbuild/solenv/gbuild/gbuild.mk +++ b/solenv/doc/gbuild/solenv/gbuild/gbuild.mk @@ -70,11 +70,11 @@ namespace gb static const List<String> CPUDEFS; /// default c++ compilation compiler flags static const List<String> CXXFLAGS; - /// platform- and compilerin dependent default defines + /// platform- and compiler independent default defines static const List<String> GLOBALDEFS; /// default objective c++ compilation compiler flags static const List<String> OBJCXXFLAGS; - /// platfomspecific default defines + /// platformspecific default defines static const List<String> OSDEFS; /// ? static const Path SDKDIR; diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index 05f1bd21e256..46d0761e7316 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -256,11 +256,11 @@ $(eval $(call gb_Deliver_init)) # TODO: to what extent is the following still true? # It is important to include them in the right order as that is # -- at least in part -- defining precedence. This is not an issue in the -# WORKDIR as there are no nameing collisions there, but INSTDIR is a mess +# WORKDIR as there are no naming collisions there, but INSTDIR is a mess # and precedence is important there. This is also platform dependent. # # This is less of an issue with GNU Make versions > 3.82 which matches for -# shortest stem instead of first match. However, upon intoduction this version +# shortest stem instead of first match. However, upon introduction this version # is not available everywhere by default. include $(foreach class, \ |