Skip to content

Commit

Permalink
Attempt to fix Travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
CelticMinstrel committed Apr 5, 2016
1 parent 5cf1279 commit ce7cd01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/gui/dialogs/addon/description.cpp
Expand Up @@ -31,6 +31,8 @@

#include "utils/functional.hpp"

#include <stdexcept>

namespace
{
std::string format_addon_time(time_t time)
Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/lua_interpreter.cpp
Expand Up @@ -321,7 +321,7 @@ class tlua_interpreter::input_model {
#ifdef HAVE_HISTORY
// Do history expansions
char * cmd_cstr = new char [cmd.length()+1];
std::strcpy (cmd_cstr, cmd.c_str());
strcpy (cmd_cstr, cmd.c_str());

char * expansion;

Expand Down

0 comments on commit ce7cd01

Please sign in to comment.