36 lines
940 B
Diff
36 lines
940 B
Diff
From f7705dca0be7aacc8ce96d842860c419f755c26e Mon Sep 17 00:00:00 2001
|
|
From: Christos Zoulas <christos@zoulas.com>
|
|
Date: Fri, 9 Apr 2021 19:16:51 +0000
|
|
Subject: [PATCH] fix previous (cast >>)
|
|
|
|
---
|
|
src/encoding.c | 8 +-------
|
|
1 file changed, 1 insertion(+), 7 deletions(-)
|
|
|
|
diff --git src/encoding.c src/encoding.c
|
|
index 691e3e16..0fb1f47b 100644
|
|
--- src/encoding.c
|
|
+++ src/encoding.c
|
|
@@ -1,5 +1,3 @@
|
|
-/* $NetBSD: encoding.c,v 1.1.1.13 2021/04/09 18:58:01 christos Exp $ */
|
|
-
|
|
/*
|
|
* Copyright (c) Ian F. Darwin 1986-1995.
|
|
* Software written by Ian F. Darwin and others;
|
|
@@ -37,11 +35,7 @@
|
|
#include "file.h"
|
|
|
|
#ifndef lint
|
|
-#if 0
|
|
-FILE_RCSID("@(#)$File: encoding.c,v 1.29 2021/04/09 19:16:19 christos Exp $")
|
|
-#else
|
|
-__RCSID("$NetBSD: encoding.c,v 1.1.1.13 2021/04/09 18:58:01 christos Exp $");
|
|
-#endif
|
|
+FILE_RCSID("@(#)$File: encoding.c,v 1.30 2021/04/09 19:16:51 christos Exp $")
|
|
#endif /* lint */
|
|
|
|
#include "magic.h"
|
|
--
|
|
2.28.0
|
|
|