Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id EF3F9431FD0 for ; Mon, 25 Jul 2011 13:33:38 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Olsnfx9YW2Yx for ; Mon, 25 Jul 2011 13:33:38 -0700 (PDT) Received: from mail-qw0-f53.google.com (mail-qw0-f53.google.com [209.85.216.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 936E3431FB6 for ; Mon, 25 Jul 2011 13:33:38 -0700 (PDT) Received: by qwb7 with SMTP id 7so2748188qwb.26 for ; Mon, 25 Jul 2011 13:33:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer:in-reply-to:references; bh=Eg2O7Ipbrmv/L028JOEYxAtmxPUizS3w0pgQJEcYMis=; b=vf8Zjsg00iJePVBDFiGQbVTmgZlQvalHxKu/WncHBgJb6pu165MkGvnuUXjRCSZuIy iY3R7sb75C9Ux08N0Ll/KbxzUoj1/WTGgP91DT+tMKywyDo7zMBi0uLz2Q9CJBll9kOh JTgD5E7/gTiJ7+oXFsbFzeYJt/E+U1KlH431M= Received: by 10.224.194.68 with SMTP id dx4mr1755501qab.31.1311626017602; Mon, 25 Jul 2011 13:33:37 -0700 (PDT) Received: from localhost.localdomain (vpl025.wlan.library.upenn.edu [130.91.140.26]) by mx.google.com with ESMTPS id m7sm3753301qct.41.2011.07.25.13.33.35 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 25 Jul 2011 13:33:36 -0700 (PDT) From: Aaron Ecay To: notmuch@notmuchmail.org Subject: [PATCH] Add missing call to g_type_init() Date: Mon, 25 Jul 2011 16:33:09 -0400 Message-Id: <1311625989-97755-1-git-send-email-aaronecay@gmail.com> X-Mailer: git-send-email 1.7.6 In-Reply-To: <87ipqsfcpn.fsf@servo.factory.finestructure.net> References: <87ipqsfcpn.fsf@servo.factory.finestructure.net> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jul 2011 20:33:39 -0000 Signed-off-by: Aaron Ecay --- notmuch.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/notmuch.c b/notmuch.c index 3973e35..f9d6629 100644 --- a/notmuch.c +++ b/notmuch.c @@ -579,6 +579,7 @@ main (int argc, char *argv[]) local = talloc_new (NULL); g_mime_init (0); + g_type_init (); if (argc == 1) return notmuch (local); -- 1.7.6