Skip to content

Commit 06636c8

Browse files
committed
Fixes name error.
1 parent 37984e9 commit 06636c8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/compra.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
struct compra comprar_producto[MAX_COMPRAS];
1111
struct Proveedor suplir_producto[MAX_COMPRAS];
1212

13-
int obtener_suplidor_soma()
13+
int obtener_suplidor_suma()
1414
{
1515
int sum = 0;
1616
for (size_t i = 0; i < MAX_COMPRAS; i++)

src/contabilidad.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void registro_ventas() /* Muestra el Registro de Ventas realizadas */
2929
return print_factura();
3030
}
3131

32-
void dinero_total ()
32+
void dinero_total()
3333
{
3434
clear_screen();
3535
printf("El Dinero Total Obtenido es: %d\n", obtener_ventas_suma() - obtener_suplidor_suma());
@@ -38,7 +38,7 @@ void dinero_total ()
3838
bool contabilidad_menu()
3939
{
4040

41-
char _temp[sizeof(short)*2];
41+
char _temp[sizeof(short) * 2];
4242
short temp;
4343
bool flag = false;
4444
int time = 1;

0 commit comments

Comments
 (0)