Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2003-04-26 20:02:26 +0400
committerTon Roosendaal <ton@blender.org>2003-04-26 20:02:26 +0400
commit695c9688258ad6a42c8599c3a3e67409d8965ac8 (patch)
tree1b327ff13ac579ca26e0377dcfd6fce5572c38c6 /source/blender/blenlib/intern/storage.c
parent701ebe126ab847609d81d00ebf1715911b7a07d1 (diff)
- translations for comments in blender lib files
Diffstat (limited to 'source/blender/blenlib/intern/storage.c')
-rw-r--r--source/blender/blenlib/intern/storage.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index 5884abf7021..3967e7194c6 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -34,7 +34,7 @@
#include <sys/types.h>
#include <stdio.h>
-#include <stdlib.h> /* voorkomt dat je bij malloc type moet aangeven */
+#include <stdlib.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
@@ -95,7 +95,6 @@ struct statfs {
#include <pwd.h>
#endif
-/* MAART: #ifndef __FreeBSD__ */
#if !defined(__FreeBSD__) && !defined(__APPLE__)
#include <malloc.h>
#endif
@@ -144,7 +143,7 @@ char *BLI_getwdN(char *dir)
int BLI_compare(struct direntry *entry1, struct direntry *entry2)
{
- /* type is gelijk aan stat.st_mode */
+ /* type is equal to stat.st_mode */
if (S_ISDIR(entry1->type)){
if (S_ISDIR(entry2->type)==0) return (-1);