Skip to content

Commit

Permalink
Merge branch 'ftbfs-ppc' of https://github.com/Debian/nqp
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed May 4, 2013
2 parents e3b8ef2 + e3a67e4 commit 249b9cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions 3rdparty/dyncall/dyncallback/dyncall_callback_ppc32.c
Expand Up @@ -25,6 +25,7 @@

#include "dyncall_callback.h"
#include "dyncall_callback_ppc32.h"
#include "dyncall_alloc_wx.h"

void dcbInitCallback(DCCallback* pcb, const char* signature, DCCallbackHandler* handler, void* userdata)
{
Expand Down
4 changes: 2 additions & 2 deletions 3rdparty/dyncall/dyncallback/dyncall_thunk_ppc32.c
Expand Up @@ -25,8 +25,8 @@

#include "dyncall_thunk.h"

unsigned short hi16(x) { return ( (unsigned short) (((unsigned int)x)>>16UL) ); }
unsigned short lo16(x) { return ( (unsigned short) ((unsigned int)x) ); }
unsigned short hi16(unsigned int x) { return ( (unsigned short) (((unsigned int)x)>>16UL) ); }
unsigned short lo16(unsigned int x) { return ( (unsigned short) ((unsigned int)x) ); }

void dcbInitThunk(DCThunk* p, void (*entry)())
{
Expand Down

0 comments on commit 249b9cf

Please sign in to comment.