C Syntax error patches

This commit is contained in:
2015-05-26 10:38:56 +02:00
parent 30ddb32dfe
commit 6248160eeb
6 changed files with 679 additions and 16 deletions

View File

@ -12,6 +12,8 @@
#include <sys/stat.h>
#include <errno.h>
#include <dirent.h>
#include <string.h>
#include <stdio.h>
#include <obierrno.h>
@ -28,7 +30,7 @@ typedef struct OBIDMS {
char dirname[OBIDMS_MAX_NAME+1]; /**< The name of the directory
* containing the DMS
*/
DIR *directory /**< A directory entry usable to
DIR *directory; /**< A directory entry usable to
* refer and scan the database directory
*/
} OBIDMS_t, *OBIDMS_p;
@ -54,6 +56,9 @@ typedef struct OBIDMS {
*/
#define OBIDMS_ACCESS_ERROR (6) /**< Permission error for accessing to the database
*/
#define OBIDMS_BAD_ENDIAN_ERROR (7) /**< The opened data structure does not corresponds
* to the endianess of the platform.
*/
/**@}*/