diff options
author | Roland McGrath <roland@gnu.org> | 1998-10-20 09:48:26 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-10-20 09:48:26 +0000 |
commit | caf7ac6e90416c95f67a381835980e3da3570eb0 (patch) | |
tree | 28077a76d06d42200c6a432d37d51e50b377d467 /libstore/typed.c | |
parent | fc40a731d23f893be2cb7699d7e078568d4c210c (diff) |
Add braces to silence gcc warnings.
Diffstat (limited to 'libstore/typed.c')
-rw-r--r-- | libstore/typed.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/libstore/typed.c b/libstore/typed.c index 09b92f8d..05083eea 100644 --- a/libstore/typed.c +++ b/libstore/typed.c @@ -1,6 +1,6 @@ /* Support for opening `typed' stores - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1998 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -55,13 +55,15 @@ store_typed_open (const char *name, int flags, break; if (! *cl) - /* No class with the given name found. */ - if (*clname_end) - /* NAME really should be a class name, which doesn't exist. */ - return EINVAL; - else - /* Try opening NAME by querying it as a file instead. */ - return store_open (name, flags, classes, store); + { + /* No class with the given name found. */ + if (*clname_end) + /* NAME really should be a class name, which doesn't exist. */ + return EINVAL; + else + /* Try opening NAME by querying it as a file instead. */ + return store_open (name, flags, classes, store); + } if (! (*cl)->open) /* CL cannot be opened. */ @@ -75,7 +77,7 @@ store_typed_open (const char *name, int flags, /* The class-specific portion of the name is empty, so make it *really* empty. */ clname_end = 0; - + return (*(*cl)->open) (clname_end, flags, classes, store); } |