Displaying 2 results from an estimated 2 matches for "0f227da".
2012 Apr 17
1
[PATCH 2/2] replace local_strtoull with _strtoui64 in windows
...++ b/include/share/compat.h
@@ -61,9 +61,10 @@
#if defined(_MSC_VER)
#define strtoll _strtoi64
+#define strtoull _strtoui64
#endif
-#if defined(_MSC_VER)
+#if defined(_MSC_VER)
#define restrict __restrict
#endif
diff --git a/src/metaflac/options.c b/src/metaflac/options.c
index 43e1f6c..0f227da 100644
--- a/src/metaflac/options.c
+++ b/src/metaflac/options.c
@@ -25,6 +25,7 @@
#include "utils.h"
#include "FLAC/assert.h"
#include "share/alloc.h"
+#include "share/compat.h"
#include "share/grabbag/replaygain.h"
#include <ctype.h>
#...
2012 Dec 04
0
[PATCH] Update FSF address.
...hould have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#if HAVE_CONFIG_H
diff --git a/src/metaflac/options.c b/src/metaflac/options.c
index 0f227da..0fa5409 100644
--- a/src/metaflac/options.c
+++ b/src/metaflac/options.c
@@ -11,9 +11,9 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with thi...