Skip to content

Commit

Permalink
Cambios en el tamaño del array, hay que volver a cambiarlo
Browse files Browse the repository at this point in the history
  • Loading branch information
caballeroalba committed May 13, 2015
1 parent 7bf3e3f commit 552b973
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -77,7 +77,7 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
subdir = .
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
$(top_srcdir)/configure $(am__configure_deps) compile \
$(top_srcdir)/configure $(am__configure_deps) compile depcomp \
install-sh missing
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
Expand Down
2 changes: 1 addition & 1 deletion Makefile.in
Expand Up @@ -77,7 +77,7 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
subdir = .
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
$(top_srcdir)/configure $(am__configure_deps) compile \
$(top_srcdir)/configure $(am__configure_deps) compile depcomp \
install-sh missing
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
Expand Down
4 changes: 2 additions & 2 deletions src/Makefile.in
Expand Up @@ -249,9 +249,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu src/Makefile
$(AUTOMAKE) --foreign src/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
Expand Down
4 changes: 2 additions & 2 deletions src/main.c
Expand Up @@ -60,10 +60,10 @@ int main(void)
}else if( result == 2){

list_tables(lista);
}else if( result >2){ /* aqui las opciones del menu */
}else if( result == 7){ /* aqui las opciones del menu */

printf("la opción seleccionada es: %d\n", result);

list_tables(lista);
/* y apagamos curses */
}

Expand Down

0 comments on commit 552b973

Please sign in to comment.