diff options
Diffstat (limited to 'backend/stv680.c')
-rw-r--r-- | backend/stv680.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/backend/stv680.c b/backend/stv680.c index 473def0..cab59b4 100644 --- a/backend/stv680.c +++ b/backend/stv680.c @@ -30,14 +30,11 @@ General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA. + along with this program. If not, see <https://www.gnu.org/licenses/>. ------------------------------------------------------------------ */ -/* $Id$ - +/* stv680 vidcam driver Gerard Klaver */ @@ -296,7 +293,7 @@ stv680_init_2 (Stv680_Vidcam * dev) dev->buffer_size = 356 * 292; if (dev->VGA) dev->buffer_size = 644 * 484; - DBG (DBG_proc, "stv680_init_2: dev->bufffer = 0x%lx\n", (unsigned long) (size_t) dev->buffer_size); + DBG (DBG_proc, "stv680_init_2: dev->buffer = 0x%lx\n", (unsigned long) (size_t) dev->buffer_size); dev->buffer = malloc (dev->buffer_size); |