Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
fix(cli): forgot i made some changes in some files that other files d…
Browse files Browse the repository at this point in the history
…epend on.
  • Loading branch information
h4rl committed May 17, 2024
1 parent 59bc66b commit aae0379
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/exmeteo/cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ int print_version(void) {

int get_codes(void) {
char *api_key = "966eb565013e92b110e1cf0d";
char ***array = currency__get_codes(api_key);
char ***array = currency__get_codes(api_key, "cache.json");
printf("%s \n", array[0][1]);
free_2D_string_array(array, 162);
return 0;
Expand Down
5 changes: 1 addition & 4 deletions src/exmeteo/gui.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
// Initialize header.
#ifndef GUI_H_INCLUDED
// define this for some reason.
#define GUI_H_INCLUDED

#include <gtk/gtk.h>
#include <stdlib.h>



int test(int argc, char **argv);

#endif // !GUI_H_INCLUDED
Expand Down

0 comments on commit aae0379

Please sign in to comment.