C Syntax error patches
This commit is contained in:
@ -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.
|
||||
*/
|
||||
/**@}*/
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user