missing brackets in condition using macro new_dependency_frame()

This commit is contained in:
Ricardo Rocha 2010-03-15 14:21:16 +00:00
parent ce540b5dd4
commit 3742f09c10
1 changed files with 2 additions and 1 deletions

View File

@ -231,8 +231,9 @@ void make_root_frames(void) {
#ifdef TABLING
/* root dependency frame */
if (!GLOBAL_root_dep_fr)
if (!GLOBAL_root_dep_fr) {
new_dependency_frame(GLOBAL_root_dep_fr, FALSE, NULL, NULL, NULL, NULL, NULL);
}
#endif /* TABLING */
}