gnome-terminal r2640 - trunk/src/skey
- From: chpe svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-terminal r2640 - trunk/src/skey
- Date: Thu, 29 May 2008 19:41:03 +0000 (UTC)
Author: chpe
Date: Thu May 29 19:41:02 2008
New Revision: 2640
URL: http://svn.gnome.org/viewvc/gnome-terminal?rev=2640&view=rev
Log:
Remove obsolete file.
Constness fixes.
Removed:
trunk/src/skey/config.h
Modified:
trunk/src/skey/test.c
Modified: trunk/src/skey/test.c
==============================================================================
--- trunk/src/skey/test.c (original)
+++ trunk/src/skey/test.c Thu May 29 19:41:02 2008
@@ -1,6 +1,7 @@
#include <config.h>
#include <stdlib.h>
+#include <string.h>
#include <glib.h>
@@ -54,7 +55,7 @@
static void
skey_test (gconstpointer data)
{
- TestEntry *test = (TestEntry *) data;
+ const TestEntry *test = (const TestEntry *) data;
char *key;
key = skey (test->algorithm,
@@ -74,7 +75,7 @@
g_test_bug_base ("http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-terminal");
for (i = 0; i < G_N_ELEMENTS (tests); ++i) {
- TestEntry *test = &tests[i];
+ const TestEntry *test = &tests[i];
char *name;
name = g_strdup_printf ("/%s/%s/%s/%d/%s/%s",
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]