Commit 4d5e2b3cc6985cbac40a294aab494d893c8b742b

Authored by blueswir1
1 parent c17e9c45

Revert broken part of r5044 (thanks to Igor Kovalenko for spotting)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5089 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
i386-dis.c
... ... @@ -2826,7 +2826,7 @@ static void
2826 2826 oappend (s)
2827 2827 const char *s;
2828 2828 {
2829   - pstrcpy (obufp, sizeof(obuf) - (size_t)(obufp - obuf), s);
  2829 + strcpy (obufp, s);
2830 2830 obufp += strlen (s);
2831 2831 }
2832 2832  
... ...